provider/aws: optional fields in aws_autoscaling_lifecycle_hook

See hashicorp/terraform/issues/5614
This commit is contained in:
Pierre Carrier 2016-03-14 11:43:13 +00:00
parent 539cbe2b01
commit a8865b8901
1 changed files with 2 additions and 2 deletions

View File

@ -49,11 +49,11 @@ func resourceAwsAutoscalingLifecycleHook() *schema.Resource {
}, },
"notification_target_arn": &schema.Schema{ "notification_target_arn": &schema.Schema{
Type: schema.TypeString, Type: schema.TypeString,
Required: true, Optional: true,
}, },
"role_arn": &schema.Schema{ "role_arn": &schema.Schema{
Type: schema.TypeString, Type: schema.TypeString,
Required: true, Optional: true,
}, },
}, },
} }