Add JSON validation to the aws_s3_bucket_policy resource.

This commit adds support for new helper function which is used to
normalise and validate JSON string.

Signed-off-by: Krzysztof Wilczynski <krzysztof.wilczynski@linux.com>
This commit is contained in:
Krzysztof Wilczynski 2016-09-14 12:29:01 +01:00
parent 5697a52b4f
commit 6a02bf2983
No known key found for this signature in database
GPG Key ID: B89F6447B63419A6
1 changed files with 1 additions and 0 deletions

View File

@ -29,6 +29,7 @@ func resourceAwsS3BucketPolicy() *schema.Resource {
"policy": {
Type: schema.TypeString,
Required: true,
ValidateFunc: validateJsonString,
DiffSuppressFunc: suppressEquivalentAwsPolicyDiffs,
},
},