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
The DNS module currently checks that the key_name is an FQDN, but there's no such restriction in Bind9 and I can't see it explicitly mentioned in RFC 2845.
Terraform Version
0.15.5
Affected Resource(s)
Provider
If this issue appears to affect multiple resources, it may be an issue with Terraform's core, so please mention this.
Terraform Configuration Files
provider"dns" {
update {
server="10.0.144.4"# Can be an IP or domainkey_name="update"key_algorithm="hmac-sha256"key_secret="things"
}
}
I have exactly the same issue on version 3.4.1 the provider forces me to use a key named with the domain name and this is a non sense for me. I use various keys on my DNS server (certbot, terraform, etc...) and I explicitly want to be aware that an update has been done with a "Terraform" key on my logs.
Is there any plan for implementing this ?
It would be possible in that case to add a "domains" section on the update block in order to specify the list of domains handled by this block ?
The DNS module currently checks that the key_name is an FQDN, but there's no such restriction in Bind9 and I can't see it explicitly mentioned in RFC 2845.
Terraform Version
0.15.5
Affected Resource(s)
Provider
If this issue appears to affect multiple resources, it may be an issue with Terraform's core, so please mention this.
Terraform Configuration Files
Expected Behavior
None FQDN string is permitted
Actual Behavior
Module validates the key_name is an FQDN here
Steps to Reproduce
Configure provider with non-FQDN key_name
The text was updated successfully, but these errors were encountered: