terraform-provider-dns
terraform-provider-dns copied to clipboard
Documentation: Use latest Terraform syntax
This updates the documentation to Terraform version 0.11+ syntax, which allows constant expressions to be provided without the interpolation syntax
Current documentation snippet:
output "google_addrs" {
value = "${join(",", data.dns_a_record_set.google.addrs)}"
}
Terraform output:
Warning: Interpolation-only expressions are deprecated
on test.tf line 71, in output "google_addrs":
71: value = "${join(",", data.dns_a_record_set.google.addrs)}"
Terraform 0.11 and earlier required all non-constant expressions to be
provided via interpolation syntax, but this pattern is now deprecated. To
silence this warning, remove the "${ sequence from the start and the }"
sequence from the end of this expression, leaving just the inner expression.
Not a reviewer in the repo. But, looks good to me.
Apologies on the delay, but these docs have since been updated/adjusted since we migrated to Plugin Framework in #260, thanks!
I'm going to lock this pull request because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active contributions. If you have found a problem that seems related to this change, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further.