Loading...
Loading...
### Terraform Version ```shell Terraform version: 1.6.3 ``` ### Terraform Configuration Files ``` resource "azurerm_mssql_managed_instance" "managed_instance" { name = var.name resource_group_name = var.resource_group_name_failover location = var.failover_group.location license_type = var.license_type sku_name = var.sku_name storage_size_in_gb = var.storage_size_in_gb subnet_id = var.subnet_id_failover vcores = var.vcores collation = var.collation dns_zone_partner_id = var.mssql_managed_instance_id maintenance_configuration_name = var.maintenance_configuration_name minimum_tls_version = var. minimum_tls_version proxy_override = var.proxy_override public_data_endpoint_enabled = false storage_account_type = var.storage_account_type timezone_id = var.timezone_id administrator_login_password = var.administrator_login_password administrator_login = var.administrator_login database_format = var.database_format hybrid_secondary_usage = var.hybrid_secondary_usage zone_redundant_enabled = var.zone_redundant_enabled identity { type = var.identity.type identity_ids =var.identity.identity_ids } tags = var.tags } ``` ### Debug Output ``` 2026-04-27T17:43:25.645Z [INFO] Terraform version: 1.6.3 2026-04-27T17:43:25.646Z [DEBUG] using github.com/hashicorp/go-tfe v1.36.0 2026-04-27T17:43:25.646Z [DEBUG] using github.com/hashicorp/hcl/v2 v2.19.1 2026-04-27T17:43:25.646Z [DEBUG] using github.com/hashicorp/terraform-svchost v0.1.1 2026-04-27T17:43:25.646Z [DEBUG] using github.com/zclconf/go-cty v1.14.1 2026-04-27T17:43:25.646Z [INFO] Go runtime version: go1.21.3 2026-04-27T17:43:25.646Z [INFO] CLI args: []string{"terraform", "-chdir=/xxxx/xxxx/xxxx/xxxx/ixxxx/xxxx", "init", "-backend-config=storage_account_name=xxxx-xxxxxxxxx-xxxxxxxx-xxxxxxx", "-backend-config=xxxx_name=xxxx", "-backend-config=key=tfstate/xxxx/xxxx.tfstate", "-backend-config=resource_group_name=xxxx-xxxxxxxxx-xxxxxxxx-xxxxxxx1"} 2026-04-27T17:43:25.646Z [TRACE] Stdout is not a terminal 2026-04-27T17:43:25.646Z [TRACE] Stderr is not a terminal 2026-04-27T17:43:25.646Z [TRACE] Stdin is not a terminal 2026-04-27T17:43:25.646Z [DEBUG] Attempting to open CLI config file: /root/.terraformrc 2026-04-27T17:43:25.646Z [DEBUG] File doesn't exist, but doesn't need to. Ignoring. 2026-04-27T17:43:25.646Z [DEBUG] ignoring non-existing provider search directory terraform.d/plugins 2026-04-27T17:43:25.646Z [DEBUG] ignoring non-existing provider search directory /root/.terraform.d/plugins 2026-04-27T17:43:25.646Z [DEBUG] ignoring non-existing provider search directory /root/.local/share/terraform/plugins 2026-04-27T17:43:25.646Z [DEBUG] ignoring non-existing provider search directory /usr/local/share/terraform/plugins 2026-04-27T17:43:25.646Z [DEBUG] ignoring non-existing provider search directory /usr/share/terraform/plugins 2026-04-27T17:43:25.647Z [INFO] CLI command args: []string{"init", "-backend-config=storage_account_name=xxxx-xxxxxxxxx-xxxxxxxx-xxxxxxx1", "-backend-config=container_name=xxxxxxxx", "-backend-config=key=tfstate/xxxx-xxxxxxxxx-xxxxxxxx-xxxxxxx.tfstate", "-backend-config=resource_group_name=xxxx-xxxxxxxxx-xxxxxxxx-xxxxxxx"} 2026-04-27T17:43:25.689Z [TRACE] Meta.Backend: merging -backend-config=... CLI overrides into backend configuration 2026-04-27T17:43:25.689Z [TRACE] Meta.Backend: built configuration for "azurerm" backend with hash value 2831257475 2026-04-27T17:43:25.690Z [TRACE] Preserving existing state lineage "xxxx-xxxxxxxxx-xxxxxxxx-xxxxxxx" 2026-04-27T17:43:25.690Z [TRACE] Preserving existing state lineage "xxxx-xxxxxxxxx-xxxxxxxx-xxxxxxx" 2026-04-27T17:43:25.693Z [TRACE] Meta.Backend: working directory was previously initialized for "azurerm" backend 2026-04-27T17:43:25.693Z [TRACE] backendConfigNeedsMigration: given configuration matches cached configuration, so no migration is required 2026-04-27T17:43:25.693Z [TRACE] Meta.Backend: using already-initialized "azurerm" backend configuration 2026-04-27T17:43:25.697Z [INFO] Testing if Service Principal / Client Certificate is applicable for Authentication.. 2026-04-27T17:43:25.697Z [INFO] Testing if Multi Tenant Service Principal / Client Secret is applicable for Authentication.. 2026-04-27T17:43:25.697Z [INFO] Testing if Service Principal / Client Secret is applicable for Authentication.. 2026-04-27T17:43:25.697Z [INFO] Using Service Principal / Client Secret for Authentication 2026-04-27T17:43:25.697Z [INFO] Getting OAuth config for endpoint https://login.microsoftonline.com/ with tenant xxxx-xxxxxxxxx-xxxxxxxx-xxxxxxx 2026-04-27T17:43:25.697Z [DEBUG] Obtaining an MSAL / Microsoft Graph token for Resource Manager.. 2026-04-27T17:43:25.697Z [DEBUG] Obtaining an MSAL / Microsoft Graph token for Storage.. 2026-04-27T17:43:25.850Z [DEBUG] Azure Backend Request: GET /terraform?comp=list&prefix=xxxxxxx%2Fiac_terraform%2Fxxxxxx%2Fxxxd-xxxxxxx.xxxxx%3A&restype=container HTTP/1.1 Host: xxxx-xxxxxxxxx-xxxxxxxx-xxxxxxx.blob.core.windows.net User-Agent: HashiCorp Terraform/1.6.3 (+https://www.terraform.io) Content-Type: application/xml; charset=utf-8 X-Ms-Authorization-Auxiliary: X-Ms-Version: 2018-11-09 Accept-Encoding: gzip 2026-04-27T17:43:25.916Z [DEBUG] Azure Backend Response for https://xxxx-xxxxxxxxx-xxxxxxxx-xxxxxxx.blob.core.windows.net/terraform?comp=list&prefix=tfstate%2Fiac_%xxxxx%2F.xxx%3A&restype=container: HTTP/1.1 200 OK Transfer-Encoding: chunked Content-Type: application/xml Date: Mon, 27 Apr 2026 17:43:25 GMT Server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Request-Id: 3xxxx-xxxxxxxxx-xxxxxxxx- X-Ms-Version: 2018-11-09 ``` ### Expected Behavior It should deploy SQLMI CLuster ### Actual Behavior Terraform crashes after 3 hours ### Steps to Reproduce terraform init terraform plan terraform apply ### Additional Context _No response_ ### References _No response_ ### Generative AI / LLM assisted development? _No response_
Click on a version to see all relevant bugs
Terraform Integration
Learn more about where this data comes from
Bug Scrub Advisor
Streamline upgrades with automated vendor bug scrubs
BugZero Enterprise
Wish you caught this bug sooner? Get proactive today.