Skip to content

Commit

Permalink
dev ssl update
Browse files Browse the repository at this point in the history
  • Loading branch information
vyshnavi-pvr committed Dec 4, 2023
1 parent 4f3b055 commit aa0104c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions __main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,13 +45,13 @@
domain_name=url,
validation_method="DNS",
)
acm_cert_arn= certificate.arn
# AWS Route53 Zone for the domain
zone = route53.get_zone(name=url)

# Find the DNS validation records
validation_records = route53.Record("certificate_validation_dns_records",
records=[
r.value for r in certificate.domain_validation_options[0].resource_record],
records=[certificate.domain_validation_options[0].resource_record_value],
name=certificate.domain_validation_options[0].resource_record_name,
type=certificate.domain_validation_options[0].resource_record_type,
ttl=60,
Expand Down Expand Up @@ -355,7 +355,7 @@ def createdbSecurityGroup():
"protocol": "HTTP",
"port": "8001",
"interval": 15,
"timeout": 5,
"timeout": 15,
"healthy_threshold": 2,
"unhealthy_threshold": 2,
},
Expand Down

0 comments on commit aa0104c

Please sign in to comment.