Skip to content

Latest commit

 

History

History
60 lines (43 loc) · 1.89 KB

README.md

File metadata and controls

60 lines (43 loc) · 1.89 KB

Terraform lb-domain module

The terraform module used to create DNS records in Route53 zone for existing Network Load Balancer.

Usage

  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
    }
  }

Requirements

Name Version
aws ~> 5.48

Providers

Name Version
aws 5.45.0

Modules

Name Source Version
records terraform-aws-modules/route53/aws//modules/records ~> 2.11

Resources

Name Type
aws_lb.ingress data source

Inputs

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

Outputs

No outputs.