Initial commit.

This commit is contained in:
Patrick MARIE
2022-07-01 14:12:11 +02:00
commit 188cf2679c
58 changed files with 1837 additions and 0 deletions

3
modules/dns/main.tf Normal file
View File

@ -0,0 +1,3 @@
resource "aws_route53_zone" "self" {
name = var.dns_zone_name
}

3
modules/dns/outputs.tf Normal file
View File

@ -0,0 +1,3 @@
output "dns_zone" {
value = aws_route53_zone.self
}

4
modules/dns/variables.tf Normal file
View File

@ -0,0 +1,4 @@
variable "dns_zone_name" {
type = string
description = "The name of the main DNS zone to create"
}