Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/flaconi/terraform-aws-route53-alias
Simple Route53 Alias Record
https://github.com/flaconi/terraform-aws-route53-alias
aws terraform terraform-module
Last synced: about 5 hours ago
JSON representation
Simple Route53 Alias Record
- Host: GitHub
- URL: https://github.com/flaconi/terraform-aws-route53-alias
- Owner: Flaconi
- License: apache-2.0
- Created: 2019-12-02T11:41:53.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-02-14T14:26:10.000Z (almost 2 years ago)
- Last Synced: 2023-03-01T19:23:38.586Z (over 1 year ago)
- Topics: aws, terraform, terraform-module
- Language: Makefile
- Homepage:
- Size: 14.6 KB
- Stars: 2
- Watchers: 10
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Terraform AWS Route53 Alias
This module will create Route53 Alias record
## Requirements
| Name | Version |
|------|---------|
| [terraform](#requirement\_terraform) | >= 0.12.26 |
| [aws](#requirement\_aws) | >= 3 |## Providers
| Name | Version |
|------|---------|
| [aws](#provider\_aws) | >= 3 |## Modules
No modules.
## Resources
| Name | Type |
|------|------|
| [aws_route53_record.default](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/route53_record) | resource |
| [aws_route53_zone.default](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/route53_zone) | data source |## Inputs
| Name | Description | Type | Default | Required |
|------|-------------|------|---------|:--------:|
| [aliases](#input\_aliases) | List of aliases | `list(string)` | n/a | yes |
| [target\_dns\_name](#input\_target\_dns\_name) | DNS name of target resource (e.g. ALB, ELB) | `string` | n/a | yes |
| [target\_zone\_id](#input\_target\_zone\_id) | ID of target resource (e.g. ALB, ELB) | `string` | n/a | yes |
| [enabled](#input\_enabled) | Set to false to prevent the module from creating any resources | `bool` | `true` | no |
| [evaluate\_target\_health](#input\_evaluate\_target\_health) | Set to true if you want Route 53 to determine whether to respond to DNS queries | `bool` | `false` | no |
| [parent\_zone\_id](#input\_parent\_zone\_id) | ID of the hosted zone to contain this record (or specify `parent_zone_name`) | `string` | `""` | no |
| [parent\_zone\_name](#input\_parent\_zone\_name) | Name of the hosted zone to contain this record (or specify `parent_zone_id`) | `string` | `""` | no |## Outputs
| Name | Description |
|------|-------------|
| [hostnames](#output\_hostnames) | List of DNS records |
| [parent\_zone\_id](#output\_parent\_zone\_id) | ID of the hosted zone to contain the records |
| [parent\_zone\_name](#output\_parent\_zone\_name) | Name of the hosted zone to contain the records |