Skip to content

Commit

Permalink
Merge pull request #2276 from bflad/elb_iam_cert_validatearn
Browse files Browse the repository at this point in the history
r/aws_elb: Add listener ssl_certificate_id ARN validation
  • Loading branch information
radeksimko authored Nov 15, 2017
2 parents 1882229 + 2e4d9d6 commit 5dc07a7
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions aws/resource_aws_elb.go
Original file line number Diff line number Diff line change
Expand Up @@ -178,8 +178,9 @@ func resourceAwsElb() *schema.Resource {
},

"ssl_certificate_id": &schema.Schema{
Type: schema.TypeString,
Optional: true,
Type: schema.TypeString,
Optional: true,
ValidateFunc: validateArn,
},
},
},
Expand Down

0 comments on commit 5dc07a7

Please sign in to comment.