From eb0cd14f416c56a8a2009c30fe47cb9c099546f0 Mon Sep 17 00:00:00 2001 From: "Mosley, Franklin" Date: Tue, 15 Mar 2016 00:27:58 -0500 Subject: [PATCH] Changed `attribute` argument to be optional. Changed the `attribute` argument of the resource to be optional vs. required. --- .../providers/aws/resource_aws_lb_ssl_negotiation_policy.go | 2 +- .../providers/aws/r/lb_ssl_negotiation_policy.html.markdown | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/builtin/providers/aws/resource_aws_lb_ssl_negotiation_policy.go b/builtin/providers/aws/resource_aws_lb_ssl_negotiation_policy.go index cee4a4d44e..dd8129de43 100644 --- a/builtin/providers/aws/resource_aws_lb_ssl_negotiation_policy.go +++ b/builtin/providers/aws/resource_aws_lb_ssl_negotiation_policy.go @@ -42,7 +42,7 @@ func resourceAwsLBSSLNegotiationPolicy() *schema.Resource { "attribute": &schema.Schema{ Type: schema.TypeSet, - Required: true, + Optional: true, ForceNew: true, Elem: &schema.Resource{ Schema: map[string]*schema.Schema{ diff --git a/website/source/docs/providers/aws/r/lb_ssl_negotiation_policy.html.markdown b/website/source/docs/providers/aws/r/lb_ssl_negotiation_policy.html.markdown index f0b690ab75..e45b00a7ba 100644 --- a/website/source/docs/providers/aws/r/lb_ssl_negotiation_policy.html.markdown +++ b/website/source/docs/providers/aws/r/lb_ssl_negotiation_policy.html.markdown @@ -70,11 +70,11 @@ The following arguments are supported: * `lb_port` - (Required) The load balancer port to which the policy should be applied. This must be an active listener on the load balancer. -* `attribute` - (At least one Required) An SSL Negotiation policy attribute. Each has two properties: +* `attribute` - (Optional) An SSL Negotiation policy attribute. Each has two properties: * `name` - The name of the attribute * `value` - The value of the attribute -To set your attributes, please see the [AWS Elastic Load Balancer Developer Guide](http://docs.aws.amazon.com/ElasticLoadBalancing/latest/DeveloperGuide/elb-security-policy-table.html) for a listing of the supported SSL protocols, SSL options, and SSL ciphers. +To set your attributes, please see the [AWS Elastic Load Balancing Developer Guide](http://docs.aws.amazon.com/ElasticLoadBalancing/latest/DeveloperGuide/elb-security-policy-table.html) for a listing of the supported SSL protocols, SSL options, and SSL ciphers. ## Attributes Reference