forked from itwonderlab/terraform-aws-ec2-rds-basic-free
-
Notifications
You must be signed in to change notification settings - Fork 0
/
aws_route53.tf
29 lines (22 loc) · 825 Bytes
/
aws_route53.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# Copyright (C) 2018 - 2020 IT Wonder Lab (https://www.itwonderlab.com)
#
# This software may be modified and distributed under the terms
# of the MIT license. See the LICENSE file for details.
#------------------------
# ROUTE 53 (DNS)
#------------------------
#------------------------
# Public
#------------------------
module "aws_route53_delegation_set" {
source = "./modules/aws/route53/delegation_set"
reference_name = var.aws_route53_delegation_set_reference_name
}
module "aws_route53_public" {
source = "./modules/aws/route53/public_zone"
name = var.aws_route53_public["name"]
delegation_set_id = module.aws_route53_delegation_set.id
comment = var.aws_route53_public["comment"]
#TAGS
tags_environment = var.aws_route53_public["tags_environment"]
}