hashicorp / terraform-provider-google

Terraform Provider for Google Cloud Platform
https://registry.terraform.io/providers/hashicorp/google/latest/docs
Mozilla Public License 2.0
2.29k stars 1.72k forks source link

Data catalog: data source for taxonomy resource #9491

Open erlanderlo opened 3 years ago

erlanderlo commented 3 years ago

Community Note

Description

create a data source for data catalog taxonomy to look up and use existing taxonomy when creating policy tags.

New or Affected Resource(s)

Potential Terraform Configuration

data "google_data_catalog_taxonomy" "governance_taxonomy" {
  taxonomy = "existing_taxonomy"
  region = "us"
  project = "project"
}

resource "google_data_catalog_policy_tag" "example_policy_tag" {
  provider     = google-beta
  taxonomy     = data.google_data_catalog_taxonomy.governance_taxonomy.id
  display_name = "an example policy tag"
  description  = "A policy tag"
}

Additional response items to include in the data resource:

References

b/359705105

jcarpenter12 commented 1 year ago

I would also like to see this added

ggtisc commented 1 month ago

Currently there isn't any data source for google_data_catalog_taxonomy. This is a proposal to add it.