We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I have recreated the problem with role dns.admin and dns.peer and owner, also with older versions of provider
Terraform v1.8.5 on linux
google_dns_managed_zone
resource "google_dns_managed_zone" "peering-zone" { name = "peering-zone" provider = google dns_name = "googleapis.com." description = "Example private DNS peering zone" project = "project02"
visibility = "private"
private_visibility_config { networks { network_url = "https://www.googleapis.com/compute/v1/projects/project02/global/networks/vpc02" } }
peering_config { target_network { network_url = "https://www.googleapis.com/compute/v1/projects/project01/global/networks/vpc01" } } }
No response
terraform apply
b/387532130
The text was updated successfully, but these errors were encountered:
I can reproduce this issue.
Response: { "error": { "code": 403, "message": "Forbidden", "errors": [ { "message": "Forbidden", "domain": "global", "reason": "forbidden" } ] } }
Sorry, something went wrong.
Forwarding the issue to the service team to check if it is a permission issue.
No branches or pull requests
Community Note
I have recreated the problem with role dns.admin and dns.peer and owner, also with older versions of provider
Terraform Version & Provider Version(s)
Terraform v1.8.5
on linux
Affected Resource(s)
google_dns_managed_zone
Terraform Configuration
resource "google_dns_managed_zone" "peering-zone" {
name = "peering-zone"
provider = google
dns_name = "googleapis.com."
description = "Example private DNS peering zone"
project = "project02"
visibility = "private"
private_visibility_config {
networks {
network_url = "https://www.googleapis.com/compute/v1/projects/project02/global/networks/vpc02"
}
}
peering_config {
target_network {
network_url = "https://www.googleapis.com/compute/v1/projects/project01/global/networks/vpc01"
}
}
}
Debug Output
No response
Expected Behavior
No response
Actual Behavior
No response
Steps to reproduce
terraform apply
Important Factoids
No response
References
No response
b/387532130
The text was updated successfully, but these errors were encountered: