I´m trying to create a DNS Public Zone in GCP, when i put the command terraform apply i got this message “Error: Error creating ManagedZone: googleapi: Error 403: Forbidden, forbidden”.
I`m using Terraform v0.14.7.
Anyone could help me ?
provider “google” {
credentials = file(var.credentials)
project = var.dns_zone.project_id
}
resource “google_dns_managed_zone” “test-dev” {
name = “foo-zone”
dns_name = “foo.com.br.”
description = “DNS zone for the example domain”
}