With NLBs the DNS formatting has changed, which resulted in Lemur not getting the region correctly parsed
This commit is contained in:
parent
4e7e81aee8
commit
86f661a8af
|
@ -40,7 +40,11 @@ from lemur.plugins.lemur_aws import iam, s3, elb, ec2
|
||||||
|
|
||||||
|
|
||||||
def get_region_from_dns(dns):
|
def get_region_from_dns(dns):
|
||||||
|
# XXX.REGION.elb.amazonaws.com
|
||||||
|
if dns.endswith(".elb.amazonaws.com"):
|
||||||
return dns.split(".")[-4]
|
return dns.split(".")[-4]
|
||||||
|
else: # NLBs have a different pattern on the dns XXXX.elb.REGION.amazonaws.com
|
||||||
|
return dns.split(".")[-3]
|
||||||
|
|
||||||
|
|
||||||
def format_elb_cipher_policy_v2(policy):
|
def format_elb_cipher_policy_v2(policy):
|
||||||
|
|
Loading…
Reference in New Issue