dtan4/terraforming

View on GitHub
lib/terraforming/template/tf/elasti_cache_subnet_group.erb

Summary

Maintainability
Test Coverage
<% cache_subnet_groups.each do |cache_subnet_group| -%>
resource "aws_elasticache_subnet_group" "<%= module_name_of(cache_subnet_group) %>" {
    name        = "<%= cache_subnet_group.cache_subnet_group_name %>"
    description = "<%= cache_subnet_group.cache_subnet_group_description %>"
    subnet_ids  = <%= subnet_ids_of(cache_subnet_group).inspect %>
}

<% end -%>