Skip to content

Latest commit

 

History

History
27 lines (21 loc) · 548 Bytes

README.md

File metadata and controls

27 lines (21 loc) · 548 Bytes

terraform_route53

Terraform module to create Route53 zones

Variables

# name: the name of the route 53 zone
variable "example_org" { default = "example.org" }

Terraform example

######################
# Route 53 variables
######################
variable "example_org" { default = "example.org" }

######################
# Route 53 zones
######################
module "example_org_route53" {
  source   = "git::https://github.com/virsas/terraform_route53.git?ref=v1.0.0"
  name     = var.example_org
}