Merge pull request #328 from cloudskiff/fix_db_subnet_group

Fix false positive in aws_db_subnet_group
main
Elie 2021-03-11 11:12:03 +01:00 committed by GitHub
commit de0dac7221
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ type AwsDbSubnetGroup struct {
Description *string `cty:"description"`
Id string `cty:"id" 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"`
Tags map[string]string `cty:"tags"`
}