resource "fabric_workspace" "core_bronze" {
display_name = "ws-core-bronze-${local.name_suffix}"
description = "Core bronze workspace for storing and processing raw data"
capacity_id = data.fabric_capacity.this.id
identity = {
type = "SystemAssigned"
}
}
I got this error:
`
Error: Provider produced inconsistent result after apply
│
│ When applying changes to fabric_workspace.core_bronze, provider "provider[\"registry.terraform.io/microsoft/fabric\"]" produced an unexpected new value: .identity: was
│ cty.ObjectVal(map[string]cty.Value{"application_id":cty.UnknownVal(cty.String), "service_principal_id":cty.UnknownVal(cty.String), "type":cty.StringVal("SystemAssigned")}), but now null.
`
This error goes away if you deploy without the identity block in the workspace resource.
🔬 How to reproduce?
No response
🏗️ Code Sample / Log
No response
📷 Screenshots
No response
📈 Expected behavior
On terraform apply, the code should deploy without issue.
🐛 What happened?
When applying the following code:
I got this error: `
`
This error goes away if you deploy without the identity block in the workspace resource.
🔬 How to reproduce?
No response
🏗️ Code Sample / Log
No response
📷 Screenshots
No response
📈 Expected behavior
On
terraform apply
, the code should deploy without issue.🌌 Environment (Provider Version)
0.1.0-beta.5
🌌 Environment (Terraform Version)
1.9.8
🌌 Environment (OS)
Windows
📎 Additional context
Providers used:
🔰 Code of Conduct