This module creates and manage Route53 Zones and Recods
module "route53" {
source = "../"
zone = {
name = "brl-tech-test.com"
comment = "Gerenciado pelo mod. terraform"
# delegation_set_id = ""
# vpc = {
# id = ""
# region = ""
# }
}
records = [
{
name = "test"
type = "CNAME"
ttl = 3600
records = ["brl-tech-test.com"]
}
]
tags = {
evironment = "dev"
}
}| Name | Description | Type | Default | Required |
|---|---|---|---|---|
| records | List of Route53 records to be created | any |
n/a | yes |
| tags | Map of resource tags | map(any) |
n/a | yes |
| zone | Map of Route53 Zone parameters | object({ |
n/a | yes |
| Name | Description |
|---|---|
| name_servers | The Route53 zone NS |
| recrods | The Route53 zone records |
| zone_id | The Route53 zone ID |
module "route53" {
source = "../"
zone = {
name = "brl-tech-test.com"
comment = "Gerenciado pelo mod. terraform"
# delegation_set_id = ""
# vpc = {
# id = ""
# region = ""
# }
}
records = [
{
name = "test"
type = "CNAME"
ttl = 3600
records = ["brl-tech-test.com"]
}
]
tags = {
evironment = "dev"
}
}| Name | Description | Type | Default | Required |
|---|---|---|---|---|
| records | List of Route53 records to be created | any |
n/a | yes |
| tags | Map of resource tags | map(any) |
n/a | yes |
| zone | Map of Route53 Zone parameters | object({ |
n/a | yes |
| Name | Description |
|---|---|
| name_servers | The Route53 zone NS |
| recrods | The Route53 zone records |
| zone_id | The Route53 zone ID |