Skip to content

Commit

Permalink
Default value for IdleTimeout
Browse files Browse the repository at this point in the history
  • Loading branch information
grzegorzjeziorski committed Jan 27, 2017
1 parent c1e5ae0 commit 228176a
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion senza/components/elastic_load_balancer_v2.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +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': {},
'LoadBalancerAttributes': [
{
"Key": "idle_timeout.timeout_seconds",
"Value": "60"
}
],
"Tags": tags
}
}
Expand Down

0 comments on commit 228176a

Please sign in to comment.