Skip to content

Commit

Permalink
Merge pull request #8213 from ewbankkit/issue-8209
Browse files Browse the repository at this point in the history
d/aws_lb_target_group: Add missing schema attributes
  • Loading branch information
bflad authored Apr 6, 2019
2 parents a9982eb + ff21c80 commit 18fd544
Showing 1 changed file with 18 additions and 2 deletions.
20 changes: 18 additions & 2 deletions aws/data_source_aws_lb_target_group.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ func dataSourceAwsLbTargetGroup() *schema.Resource {
Optional: true,
Computed: true,
},

"arn_suffix": {
Type: schema.TypeString,
Computed: true,
Expand Down Expand Up @@ -49,13 +50,23 @@ func dataSourceAwsLbTargetGroup() *schema.Resource {
Computed: true,
},

"slow_start": {
Type: schema.TypeInt,
Computed: true,
},

"proxy_protocol_v2": {
Type: schema.TypeBool,
Computed: true,
},

"lambda_multi_value_headers_enabled": {
Type: schema.TypeBool,
Computed: true,
},

"slow_start": {
Type: schema.TypeInt,
"target_type": {
Type: schema.TypeString,
Computed: true,
},

Expand Down Expand Up @@ -87,6 +98,11 @@ func dataSourceAwsLbTargetGroup() *schema.Resource {
MaxItems: 1,
Elem: &schema.Resource{
Schema: map[string]*schema.Schema{
"enabled": {
Type: schema.TypeBool,
Computed: true,
},

"interval": {
Type: schema.TypeInt,
Computed: true,
Expand Down

0 comments on commit 18fd544

Please sign in to comment.