validate protocol on target group creation
This commit is contained in:
parent
35f436e24f
commit
23ad62a4f9
@ -300,6 +300,16 @@ class ELBv2Backend(BaseBackend):
|
|||||||
if target_group.name == name:
|
if target_group.name == name:
|
||||||
raise DuplicateTargetGroupName()
|
raise DuplicateTargetGroupName()
|
||||||
|
|
||||||
|
valid_protocols = ['HTTPS', 'HTTP', 'TCP']
|
||||||
|
if kwargs['healthcheck_protocol'] not in valid_protocols:
|
||||||
|
raise InvalidConditionValueError(
|
||||||
|
"Value {} at 'healthCheckProtocol' failed to satisfy constraint: "
|
||||||
|
"Member must satisfy enum value set: {}".format(kwargs['healthcheck_protocol'], valid_protocols))
|
||||||
|
if kwargs['protocol'] not in valid_protocols:
|
||||||
|
raise InvalidConditionValueError(
|
||||||
|
"Value {} at 'protocol' failed to satisfy constraint: "
|
||||||
|
"Member must satisfy enum value set: {}".format(kwargs['protocol'], valid_protocols))
|
||||||
|
|
||||||
arn = "arn:aws:elasticloadbalancing:%s:1:targetgroup/%s/50dc6c495c0c9188" % (self.region_name, name)
|
arn = "arn:aws:elasticloadbalancing:%s:1:targetgroup/%s/50dc6c495c0c9188" % (self.region_name, name)
|
||||||
target_group = FakeTargetGroup(name, arn, **kwargs)
|
target_group = FakeTargetGroup(name, arn, **kwargs)
|
||||||
self.target_groups[target_group.arn] = target_group
|
self.target_groups[target_group.arn] = target_group
|
||||||
|
@ -283,6 +283,21 @@ def test_create_target_group_and_listeners():
|
|||||||
|
|
||||||
load_balancer_arn = response.get('LoadBalancers')[0].get('LoadBalancerArn')
|
load_balancer_arn = response.get('LoadBalancers')[0].get('LoadBalancerArn')
|
||||||
|
|
||||||
|
# Can't create a target group with an invalid protocol
|
||||||
|
with assert_raises(ClientError):
|
||||||
|
conn.create_target_group(
|
||||||
|
Name='a-target',
|
||||||
|
Protocol='HTTP',
|
||||||
|
Port=8080,
|
||||||
|
VpcId=vpc.id,
|
||||||
|
HealthCheckProtocol='/HTTP',
|
||||||
|
HealthCheckPort='8080',
|
||||||
|
HealthCheckPath='/',
|
||||||
|
HealthCheckIntervalSeconds=5,
|
||||||
|
HealthCheckTimeoutSeconds=5,
|
||||||
|
HealthyThresholdCount=5,
|
||||||
|
UnhealthyThresholdCount=2,
|
||||||
|
Matcher={'HttpCode': '200'})
|
||||||
response = conn.create_target_group(
|
response = conn.create_target_group(
|
||||||
Name='a-target',
|
Name='a-target',
|
||||||
Protocol='HTTP',
|
Protocol='HTTP',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user