GoogleCloudPlatform/cloud-foundation-fabric

Add labels on resource level "google_dns_record_set"

Closed this issue · 1 comments

Describe the bug
Hi Team,

We are calling CFF module and resource "google_dns_record_set", but there are no resource labels available in this resource. We also enforced hard-mandatory sentinel policies which check resource labels are attached to each and every resource.

Main.tf

module "cloud-dns-zone" {
  source     = "git::[https://github.com/GoogleCloudPlatform/cloud-foundation-fabric.git//modules/dns?ref=v29.0.0"](https://github.com/GoogleCloudPlatform/cloud-foundation-fabric.git//modules/dns?ref=v29.0.0%22)
  project_id = "project-1"
  name       ="sample-cloud-dns"
  recordsets = {
    "A localhost" = { records = ["127.0.0.1"] }
    "A myhost"    = { ttl = 600, records = ["10.20.30.120"] }
  }
}
ludoo commented

I don't think the resource supports labels, and provider resources are not something we manage in this repo. Closing this, feel free to reopen of course if I missed the point.