2020-12-09 15:31:34 +00:00
|
|
|
package aws
|
|
|
|
|
2021-04-26 13:56:13 +00:00
|
|
|
import (
|
|
|
|
"github.com/cloudskiff/driftctl/pkg/resource"
|
|
|
|
)
|
2021-03-25 11:13:52 +00:00
|
|
|
|
2020-12-09 15:31:34 +00:00
|
|
|
const AwsDbSubnetGroupResourceType = "aws_db_subnet_group"
|
|
|
|
|
2021-04-26 13:56:13 +00:00
|
|
|
func initAwsDbSubnetGroupMetaData(resourceSchemaRepository resource.SchemaRepositoryInterface) {
|
2021-08-09 14:03:04 +00:00
|
|
|
resourceSchemaRepository.SetNormalizeFunc(AwsDbSubnetGroupResourceType, func(res *resource.Resource) {
|
2021-05-24 15:19:06 +00:00
|
|
|
val := res.Attrs
|
2021-04-26 13:56:13 +00:00
|
|
|
val.SafeDelete([]string{"name_prefix"})
|
|
|
|
})
|
2021-09-17 15:16:06 +00:00
|
|
|
resourceSchemaRepository.SetFlags(AwsDbSubnetGroupResourceType, resource.FlagDeepMode)
|
2021-04-26 13:56:13 +00:00
|
|
|
}
|