Skip to content

Commit 992464a

Browse files
committed
Merge branch 'b-aws_alb_listener-datasource' of ssh://github.com/rdelcampog/terraform-provider-aws into rdelcampog-b-aws_alb_listener-datasource
2 parents 698dd31 + fd6568b commit 992464a

1 file changed

Lines changed: 40 additions & 0 deletions

File tree

aws/data_source_aws_lb_listener.go

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -213,6 +213,46 @@ func dataSourceAwsLbListener() *schema.Resource {
213213
Type: schema.TypeString,
214214
Computed: true,
215215
},
216+
"forward": {
217+
Type: schema.TypeList,
218+
Computed: true,
219+
Elem: &schema.Resource{
220+
Schema: map[string]*schema.Schema{
221+
"target_group": {
222+
Type: schema.TypeSet,
223+
Computed: true,
224+
Elem: &schema.Resource{
225+
Schema: map[string]*schema.Schema{
226+
"arn": {
227+
Type: schema.TypeString,
228+
Computed: true,
229+
},
230+
"weight": {
231+
Type: schema.TypeInt,
232+
Computed: true,
233+
},
234+
},
235+
},
236+
},
237+
"stickiness": {
238+
Type: schema.TypeList,
239+
Computed: true,
240+
Elem: &schema.Resource{
241+
Schema: map[string]*schema.Schema{
242+
"enabled": {
243+
Type: schema.TypeBool,
244+
Computed: true,
245+
},
246+
"duration": {
247+
Type: schema.TypeInt,
248+
Computed: true,
249+
},
250+
},
251+
},
252+
},
253+
},
254+
},
255+
},
216256
},
217257
},
218258
},

0 commit comments

Comments
 (0)