Terraform lb-domain module
The terraform module used to create DNS records in Route53 zone for existing Network Load Balancer.
module "lb_domain" {
source = " git::https://github.com/flowFuse/terraform-aws-flowfuse.git//lb-domain?ref=main"
namespace = " my-company"
route53_zone_name = " example.com"
stage = " production"
tags = {
Environment = " production"
Project = " my-project"
terraform = true
}
}
Name
Source
Version
records
terraform-aws-modules/route53/aws//modules/records
~> 2.11
Name
Description
Type
Default
Required
namespace
ID element. Usually an abbreviation of your organization name, e.g. 'eg' or 'cp', to help ensure generated IDs are globally unique
string
n/a
yes
route53_zone_name
The name of the Route53 zone
string
n/a
yes
stage
ID element. Usually used to indicate role, e.g. 'prod', 'staging', 'source', 'build', 'test', 'deploy', 'release'
string
n/a
yes
tags
A map of tags to add to all resources
map(string)
{}
no
No outputs.