Merge pull request #2854 from hosseinsh/nlb-naming-bug
With NLBs the DNS formatting has changed, which resulted in Lemur not…
This commit is contained in:
commit
2239b68e0e
|
@ -40,7 +40,12 @@ from lemur.plugins.lemur_aws import iam, s3, elb, ec2
|
|||
|
||||
|
||||
def get_region_from_dns(dns):
|
||||
return dns.split(".")[-4]
|
||||
# XXX.REGION.elb.amazonaws.com
|
||||
if dns.endswith(".elb.amazonaws.com"):
|
||||
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):
|
||||
|
|
Loading…
Reference in New Issue