Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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 |