Merge pull request #328 from cloudskiff/fix_db_subnet_group
Fix false positive in aws_db_subnet_groupmain
commit
de0dac7221
|
@ -8,7 +8,7 @@ type AwsDbSubnetGroup struct {
|
||||||
Description *string `cty:"description"`
|
Description *string `cty:"description"`
|
||||||
Id string `cty:"id" computed:"true"`
|
Id string `cty:"id" computed:"true"`
|
||||||
Name *string `cty:"name" computed:"true"`
|
Name *string `cty:"name" computed:"true"`
|
||||||
NamePrefix *string `cty:"name_prefix" computed:"true"`
|
NamePrefix *string `cty:"name_prefix" computed:"true" diff:"-"`
|
||||||
SubnetIds []string `cty:"subnet_ids"`
|
SubnetIds []string `cty:"subnet_ids"`
|
||||||
Tags map[string]string `cty:"tags"`
|
Tags map[string]string `cty:"tags"`
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue