# output iam alias
module "aws_iam_alias" {
source = "github.com/ellerbrock/tf-aws-iam-alias"
}
# create vpc dhcp options
module "aws_vpc_dhcp" {
source = "github.com/ellerbrock/tf-aws-vpc-dhcp"
domain_name = "domain.tld"
domain_name_servers = ["10.20.30.40", "10.20.30.50"]
ntp_servers = ["10.20.30.40", "10.20.30.50"]
tag_name = "${module.aws_iam_alias.account_id}"
}
This work by Maik Ellerbrock is licensed under a Creative Commons Attribution 4.0 International License and the underlying source code is licensed under the MIT license.