driftctl/pkg/resource/aws/aws_sns_topic_policy.go

33 lines
1.0 KiB
Go
Raw Normal View History

package aws
2021-05-03 16:41:25 +00:00
import (
"github.com/cloudskiff/driftctl/pkg/helpers"
2021-05-03 16:41:25 +00:00
"github.com/cloudskiff/driftctl/pkg/resource"
)
2021-03-25 11:13:52 +00:00
const AwsSnsTopicPolicyResourceType = "aws_sns_topic_policy"
2021-05-03 16:41:25 +00:00
func initSnsTopicPolicyMetaData(resourceSchemaRepository resource.SchemaRepositoryInterface) {
2021-08-09 15:15:35 +00:00
resourceSchemaRepository.SetResolveReadAttributesFunc(AwsSnsTopicPolicyResourceType, func(res *resource.Resource) map[string]string {
return map[string]string{
"topic_arn": res.ResourceId(),
2021-08-09 15:15:35 +00:00
}
})
2021-05-03 16:41:25 +00:00
resourceSchemaRepository.UpdateSchema(AwsSnsTopicPolicyResourceType, map[string]func(attributeSchema *resource.AttributeSchema){
"policy": func(attributeSchema *resource.AttributeSchema) {
attributeSchema.JsonString = true
},
})
2021-08-09 14:03:04 +00:00
resourceSchemaRepository.SetNormalizeFunc(AwsSnsTopicPolicyResourceType, func(res *resource.Resource) {
val := res.Attrs
val.SafeDelete([]string{"owner"})
jsonString, err := helpers.NormalizeJsonString((*val)["policy"])
if err != nil {
return
}
2021-05-21 14:09:45 +00:00
_ = val.SafeSet([]string{"policy"}, jsonString)
})
2021-05-03 16:41:25 +00:00
}