Please vote on this issue by adding a 👍 reaction to the original issue to help the community and maintainers prioritize this request
Please do not leave "+1" or "me too" comments, they generate extra noise for issue followers and do not help prioritize the request
If you are interested in working on this issue or have submitted a pull request, please leave a comment. If the issue is assigned to the "modular-magician" user, it is either in the process of being autogenerated, or is planned to be autogenerated soon. If the issue is assigned to a user, that user is claiming responsibility for the issue. If the issue is assigned to "hashibot", a community member has claimed the issue already.
Description
Hey all,
the current implementation of google_data_catalog_tag_template doesn't support creation of public Tag templates. The REST API exposes the isPubliclyReadable attribute which is missing in the TF module.
New or Affected Resource(s)
google_data_catalog_tag_template
Potential Terraform Configuration
resource "google_data_catalog_tag_template" "basic_tag_template" {
tag_template_id = "my_template"
region = "us-central1"
display_name = "Demo Tag Template"
is_publicly_readable = true
fields {
field_id = "source"
display_name = "Source of data asset"
type {
primitive_type = "STRING"
}
is_required = true
}
force_delete = "false"
}
Marking this as upstream because the field is only supported in the GA API. We can only support fields that are also present in the beta API (unless there isn't a beta API).
Community Note
Description
Hey all,
the current implementation of
google_data_catalog_tag_template
doesn't support creation of public Tag templates. The REST API exposes theisPubliclyReadable
attribute which is missing in the TF module.New or Affected Resource(s)
Potential Terraform Configuration
References
b/299600748