Initial commit.
This commit is contained in:
3
modules/dns/main.tf
Normal file
3
modules/dns/main.tf
Normal file
@ -0,0 +1,3 @@
|
||||
resource "aws_route53_zone" "self" {
|
||||
name = var.dns_zone_name
|
||||
}
|
3
modules/dns/outputs.tf
Normal file
3
modules/dns/outputs.tf
Normal file
@ -0,0 +1,3 @@
|
||||
output "dns_zone" {
|
||||
value = aws_route53_zone.self
|
||||
}
|
4
modules/dns/variables.tf
Normal file
4
modules/dns/variables.tf
Normal file
@ -0,0 +1,4 @@
|
||||
variable "dns_zone_name" {
|
||||
type = string
|
||||
description = "The name of the main DNS zone to create"
|
||||
}
|
Reference in New Issue
Block a user