provider/aws: Add validation for aws_launch_configuration

This commit is contained in:
Radek Simko 2015-06-25 11:58:40 +01:00
parent 016c2047f0
commit 36fee9a2f5
1 changed files with 9 additions and 0 deletions

View File

@ -30,6 +30,15 @@ func resourceAwsLaunchConfiguration() *schema.Resource {
Optional: true,
Computed: true,
ForceNew: true,
ValidateFunc: func(v interface{}, k string) (ws []string, errors []error) {
// https://github.com/boto/botocore/blob/9f322b1/botocore/data/autoscaling/2011-01-01/service-2.json#L1932-L1939
value := v.(string)
if len(value) > 255 {
errors = append(errors, fmt.Errorf(
"%q cannot be longer than 255 characters", k))
}
return
},
},
"image_id": &schema.Schema{