Add JSON validation to the aws_s3_bucket 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:
parent
e8a7b5d1c6
commit
a35695a804
|
@ -48,6 +48,7 @@ func resourceAwsS3Bucket() *schema.Resource {
|
||||||
"policy": &schema.Schema{
|
"policy": &schema.Schema{
|
||||||
Type: schema.TypeString,
|
Type: schema.TypeString,
|
||||||
Optional: true,
|
Optional: true,
|
||||||
|
ValidateFunc: validateJsonString,
|
||||||
DiffSuppressFunc: suppressEquivalentAwsPolicyDiffs,
|
DiffSuppressFunc: suppressEquivalentAwsPolicyDiffs,
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -110,9 +111,13 @@ func resourceAwsS3Bucket() *schema.Resource {
|
||||||
},
|
},
|
||||||
|
|
||||||
"routing_rules": &schema.Schema{
|
"routing_rules": &schema.Schema{
|
||||||
Type: schema.TypeString,
|
Type: schema.TypeString,
|
||||||
Optional: true,
|
Optional: true,
|
||||||
StateFunc: normalizeJson,
|
ValidateFunc: validateJsonString,
|
||||||
|
StateFunc: func(v interface{}) string {
|
||||||
|
json, _ := normalizeJsonString(v)
|
||||||
|
return json
|
||||||
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
@ -465,8 +470,11 @@ func resourceAwsS3BucketRead(d *schema.ResourceData, meta interface{}) error {
|
||||||
if err := d.Set("policy", ""); err != nil {
|
if err := d.Set("policy", ""); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
} else if err := d.Set("policy", normalizeJson(*v)); err != nil {
|
} else {
|
||||||
return err
|
policy, _ := normalizeJsonString(*v)
|
||||||
|
if err := d.Set("policy", policy); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue