I've just ran terraforming r53r with version 0.13.2, and it exported a wildcard domain as
resource "aws_route53_record" "-052-example-com-CNAME" {
zone_id = "XYZ"
name = "*.example.com"
type = "CNAME"
records = ["example.com."]
ttl = "1800"
}
This way, terraform plan throws up an error:
$ terraform plan
1 error(s) occurred:
* aws_route53_record.-052-example-com-CNAME: -052-example-com-CNAME: resource name can only contain letters, numbers, dashes, and underscores.
Hi,
I've just ran
terraforming r53r
with version 0.13.2, and it exported a wildcard domain asThis way, terraform plan throws up an error:
Digging through the issues, I found https://github.com/dtan4/terraforming/pull/139, but it seems like the issue has been re-introduced.