-
Notifications
You must be signed in to change notification settings - Fork 631
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unable to create PTR records using Terraform #688
Comments
What version of the provider are you using? |
@jacobbednarz I am using the recent one with this construct. |
Exact version please. That operator doesn’t mean the latest, just a version within the 2.0 to 3.0 range. |
Looks like its picking |
One issue I see here is that you're attempting to proxy a PTR record (which isn't possible in Cloudflare https://support.cloudflare.com/hc/en-us/articles/360019093151). I'm checking whether that is interfering here as we have additional validation around that. |
@jacobbednarz I removed the proxy option but still failing at the |
This works on master (your content was still invalid) resource "cloudflare_record" "ptr_repro" {
zone_id = "ZONE_ID"
name = "@"
type = "PTR"
value = "mail.example.com"
} However trying this on 2.6.0 doesn't which is odd as nothing as changed for records on master vs 2.6.0. |
@jacobbednarz Which version is master using? |
Oh ok, will wait for the next release and validate again then. Thanks! |
Hi there,
I am unable to create Cloudflare PTR records using Terraform. From the issue here, looks like this is fixed, but still facing the same error.
Terraform Version
Terraform v0.12.21
Affected Resource(s)
Please list the resources as a list, for example:
Terraform Configuration Files
Output
Expected Behavior
Cloudflare PTR records should be created
Actual Behavior
Error message unable to detect
PTR
record typeSteps to Reproduce
terraform apply
References
https://github.com/terraform-providers/terraform-provider-cloudflare/issues/283
The text was updated successfully, but these errors were encountered: