Getting an error while editing databrics metastore "databricks_metastore" using terraform (Azure)
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-14-2024 06:56 AM
Hi ,
I am getting an error (Metastore has reached the limit for metastores in region ) while updating metatsore using terraform , below the script i am using for updating metastore . There is already a metastore available i dont want to create the new one, i just want to update some property using terraform .
resource "databricks_metastore" "example" {
provider= databricks.azure_account
name = "metastore_azure_northeurope"
owner = var.databricksGroupName
delta_sharing_scope = "INTERNAL_AND_EXTERNAL"
delta_sharing_recipient_token_lifetime_in_seconds = 600000
}