Skip to content

Commit

Permalink
Merge pull request #440 from grzegorzjeziorski/master
Browse files Browse the repository at this point in the history
Support for additional properties, eg. IdleTimeout of load balancer
  • Loading branch information
hjacobs authored Jan 30, 2017
2 parents cad98c5 + 228176a commit 1412cd9
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions senza/components/elastic_load_balancer_v2.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,12 @@ def component_elastic_load_balancer_v2(definition,
'Scheme': loadbalancer_scheme,
'SecurityGroups': resolve_security_groups(configuration["SecurityGroups"], args.region),
'Subnets': {"Fn::FindInMap": [loadbalancer_subnet_map, {"Ref": "AWS::Region"}, "Subnets"]},
'LoadBalancerAttributes': [
{
"Key": "idle_timeout.timeout_seconds",
"Value": "60"
}
],
"Tags": tags
}
}
Expand Down

0 comments on commit 1412cd9

Please sign in to comment.