driftctl/pkg/resource/aws/aws_ami.go

16 lines
433 B
Go
Raw Normal View History

package aws
2021-04-26 13:36:12 +00:00
import (
"github.com/cloudskiff/driftctl/pkg/resource"
)
2021-03-25 11:13:52 +00:00
const AwsAmiResourceType = "aws_ami"
2021-04-26 13:36:12 +00:00
func initAwsAmiMetaData(resourceSchemaRepository resource.SchemaRepositoryInterface) {
2021-08-09 14:03:04 +00:00
resourceSchemaRepository.SetNormalizeFunc(AwsAmiResourceType, func(res *resource.Resource) {
val := res.Attrs
2021-04-26 13:36:12 +00:00
val.SafeDelete([]string{"timeouts"})
})
2021-09-17 15:16:06 +00:00
resourceSchemaRepository.SetFlags(AwsAmiResourceType, resource.FlagDeepMode)
2021-04-26 13:36:12 +00:00
}