Reference module with multiple resources – Amazon web services
I am trying to create an AWS route53 hosted zone and add records to it. I added the following resources to a module main.tf resource "aws_route53_zone" "zone" { name = var.name } data "aws_route53_zone" "zone_data" { name = var.name }…