You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This Terraform module sets up an AWS Route53 record for a given domain and retrieves the most recent AWS ACM certificate for the base domain. It uses an existing Application Load Balancer (ALB) to create an alias record in Route53.
4
+
5
+
## Assumptions
6
+
7
+
- You have a domain managed by AWS Route53.
8
+
- You have an existing ALB with a DNS name and zone ID.
9
+
- The ACM certificate for your domain is already issued and available in your AWS account.
10
+
11
+
## Prerequisites
12
+
13
+
1.**Terraform:** Make sure you have Terraform installed. Refer to the [Terraform installation guide](https://learn.hashicorp.com/tutorials/terraform/install-cli) if needed.
14
+
2.**AWS Credentials:** Ensure your AWS credentials are configured. You can do this by setting environment variables or using the AWS credentials file.
15
+
3.**Existing Resources:** The following resources must already exist:
16
+
- An AWS Route53 hosted zone for your domain.
17
+
- An AWS ACM certificate for your domain that is in the `ISSUED` state.
0 commit comments