0
1
in my AWS ec2 linux instance I need my /etc/resolve.conf file to look something like
search my.domain my.other.domain
nameserver 10.10.10.10
my terraform object looks like
resource "aws_vpc_dhcp_options" "dns_option" {
domain_name = "${var.environment}.my.domain"
domain_name_servers = ["${split(",", var.vpc_dns_server)}"]
}
I need to add multiple domain_name objects I think?
This question could really do with 'hashicorp' and 'terraform' tags but I don't have the reputation to add them. – nick fox – 2017-11-09T14:55:10.680