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
Hello, I'm trying to use this against my porkbun domain but am having issues.
resource"porkbun_dns_record""root" {
domain="deadman.wtf"name="*"type="CNAME"content="pixie.porkbun.com"ttl=600priority=1notes="Root record deadman.wtf"
}
resource"porkbun_dns_record""www" {
domain="deadman.wtf"name="www"type="CNAME"content="pixie.porkbun.com"ttl=600priority=1notes="Redirect www.deadman.wtf to deadman.wtf"
}
resource"porkbun_dns_record""proton" {
domain="deadman.wtf"name="@"type="TXT"content="protonmail-verification=REDACTED"ttl=600priority=1notes="Protonmail domain verification"
}
r3p0m4n@fedora:~/git/__new__/deadman/terraform$ terraform apply
╷
│ Error: Invalid Configuration for Read-Only Attribute
│
│ with porkbun_dns_record.root,
│ on record.tf line 2, in resource "porkbun_dns_record" "root":
│ 2: id = 0
│
│ Cannot set value for this attribute as the provider has marked it as read-only. Remove the configuration line setting the value.
│
│ Refer to the provider documentation or contact the provider developers for additional information about configurable and read-only attributes that are supported.
╵
╷
│ Error: Invalid Configuration for Read-Only Attribute
│
│ with porkbun_dns_record.www,
│ on record.tf line 13, in resource "porkbun_dns_record" "www":
│ 13: id = 1
│
│ Cannot set value for this attribute as the provider has marked it as read-only. Remove the configuration line setting the value.
│
│ Refer to the provider documentation or contact the provider developers for additional information about configurable and read-only attributes that are supported.
╵
╷
│ Error: Invalid Configuration for Read-Only Attribute
│
│ with porkbun_dns_record.proton,
│ on record.tf line 24, in resource "porkbun_dns_record" "proton":
│ 24: id = 2
│
│ Cannot set value for this attribute as the provider has marked it as read-only. Remove the configuration line setting the value.
│
│ Refer to the provider documentation or contact the provider developers for additional information about configurable and read-only attributes that are supported.
The text was updated successfully, but these errors were encountered:
I see you've updated your code and removed the problematic id fields. The new configuration should resolve the error. Are there any other issues? If not, I'll close this ticket.
Hello, I'm trying to use this against my porkbun domain but am having issues.
The text was updated successfully, but these errors were encountered: