Implementing ELBV2 target group attributes

This commit is contained in:
Jack Danger 2017-08-02 15:57:15 -07:00
commit 543e5fb077
3 changed files with 135 additions and 1 deletions

View file

@ -55,6 +55,11 @@ class FakeTargetGroup(BaseModel):
self.unhealthy_threshold_count = unhealthy_threshold_count
self.load_balancer_arns = []
self.attributes = {
'deregistration_delay.timeout_seconds': 300,
'stickiness.enabled': 'false',
}
self.targets = OrderedDict()
def register(self, targets):