Will the "Managed by Terraform" comment in Route53 break my DNS

I’ve imported about 300 DNS entries from route53 into terraform. I’ve run a plan to check my state is good, and everything looks fine except terraform wants to add a comment to every item its managing:

# aws_route53_zone.tfer--ZZZ_zzz-002E-net will be updated in-place
  ~ resource "aws_route53_zone" "tfer--ZY9ZZZZ_zzzz-002E-co" {
      + comment           = "Managed by Terraform"
      ...

This is the only change. If I run this, will this break my DNS entries? Will it cause downtime to my domains?

Nope. A comment is not a record. Here is the aws command line way to add it if that make you feel more secure: https://docs.aws.amazon.com/cli/latest/reference/route53/update-hosted-zone-comment.html

1 Like

Thanks you very much.