You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
AWS Route53 resource getting created every time terraform apply is run
no resource gets added to the terraform.tfstate file, even after successfully reporting that the resource gets created (it does get created in Route53)
To Reproduce
This is an SRV required for MS Active Directory
resource "aws_route53_record" "ldap_tcp_DefaultFirstSiteSame_sites_domainDnsZones" {
zone_id = "ABCDEFGHIJKLMNOP"
name = "_ldap._tcp.default-First-Site-Name._sites.domainDnsZones"
type = "SRV"
ttl = "600"
records = [ "0 100 389 msad-pdc.test.mydomain.com." ]
}
This version of it works however;
resource "aws_route53_record" "ldap_tcp_defaultfirstsitename_sites_domaindnszones" {
zone_id = "ABCDEFGHIJKLMNOP"
name = "_ldap._tcp.default-first-site-name._sites.domaindnszones"
type = "SRV"
ttl = "600"
records = [ "0 100 389 msad-pdc.test.mydomain.com." ]
}
Suggestions
Have the code always function in lowercase
Update the docs to highlight that mixed-case name and name properties are not supported
The text was updated successfully, but these errors were encountered:
I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues.
If you have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further.
ghost
locked and limited conversation to collaborators
Apr 30, 2020
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Summary
terraform apply
is runTo Reproduce
This is an SRV required for MS Active Directory
This version of it works however;
Suggestions
The text was updated successfully, but these errors were encountered: