-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Open
GoogleCloudPlatform/magic-modules
#15924Labels
enhancementforward/reviewIn review; remove label to forwardIn review; remove label to forwardservice/bigquery
Description
Community Note
- 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 an issue is assigned to a user, that user is claiming responsibility for the issue.
- Customers working with a Google Technical Account Manager or Customer Engineer can ask them to reach out internally to expedite investigation and resolution of this issue.
Description
biglake.googleapis.com provides an implementation of the Apache Iceberg REST Catalog on Google Cloud. Details see https://docs.cloud.google.com/biglake/docs/blms-rest-catalog.
This enhancement requests the implementation in the Google Terraform provider to support the underlying catalog resources.
New or Affected Resource(s)
- google_biglake_iceberg_catalog
Potential Terraform Configuration
resource "google_storage_bucket" "bucket_for_my_catalog" {
name = "my-catalog"
location = "us-central1"
force_destroy = true
uniform_bucket_level_access = true
}
resource "google_biglake_iceberg_catalog" "my_catalog" {
name = "my-catalog"
catalog_type = "CATALOG_TYPE_GCS_BUCKET"
credential_mode = "CREDENTIAL_MODE_VENDED_CREDENTIALS"
depends_on = [
google_storage_bucket.bucket_for_my_catalog
]
}References
No response
nika-qubit
Metadata
Metadata
Assignees
Labels
enhancementforward/reviewIn review; remove label to forwardIn review; remove label to forwardservice/bigquery