Skip to content

Commit

Permalink
Merge pull request #6119 from terraform-providers/b-aws_lb_listener_r…
Browse files Browse the repository at this point in the history
…ule-order

resource/aws_lb_listener(_rule): Set action order to Computed
  • Loading branch information
bflad authored Oct 11, 2018
2 parents 5428c11 + e4efa7d commit 4abfee7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions aws/resource_aws_lb_listener.go
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ func resourceAwsLbListener() *schema.Resource {
"order": {
Type: schema.TypeInt,
Optional: true,
Computed: true,
ValidateFunc: validation.IntBetween(1, 50000),
},

Expand Down
1 change: 1 addition & 0 deletions aws/resource_aws_lb_listener_rule.go
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ func resourceAwsLbbListenerRule() *schema.Resource {
"order": {
Type: schema.TypeInt,
Optional: true,
Computed: true,
ValidateFunc: validation.IntBetween(1, 50000),
},

Expand Down

0 comments on commit 4abfee7

Please sign in to comment.