Skip to content

Support google_biglake_iceberg_catalog resourceΒ #25490

@nika-qubit

Description

@nika-qubit

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

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions