File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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 },
You can’t perform that action at this time.
0 commit comments