driftctl/pkg/resource/aws/aws_iam_user.go

19 lines
547 B
Go
Raw Normal View History

package aws
2021-05-07 15:47:53 +00:00
import (
"github.com/cloudskiff/driftctl/pkg/resource"
)
2021-03-25 11:13:52 +00:00
const AwsIamUserResourceType = "aws_iam_user"
2021-05-07 15:47:53 +00:00
func initAwsIAMUserMetaData(resourceSchemaRepository resource.SchemaRepositoryInterface) {
resourceSchemaRepository.SetNormalizeFunc(AwsIamUserResourceType, func(res *resource.AbstractResource) {
val := res.Attrs
2021-05-07 15:47:53 +00:00
permissionsBoundary, exist := val.Get("permissions_boundary")
if exist && permissionsBoundary == "" {
val.SafeDelete([]string{"permissions_boundary"})
}
val.SafeDelete([]string{"force_destroy"})
})
}