Merge pull request #5616 from pcarrier/pcarrier/aws_autoscaling_lifecycle_hook_optional

provider/aws: optional fields in aws_autoscaling_lifecycle_hook
This commit is contained in:
Paul Stack 2016-03-14 12:34:52 +00:00
commit cea8602c7a
1 changed files with 2 additions and 2 deletions

View File

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