microsoft/terraform-provider-fabric v1.6.0
microsoft/terraform-provider-fabric
Captured source
source ↗published Sep 11, 2025seen Jun 26captured 2whttp 200method plain
v1.6.0
Repository: microsoft/terraform-provider-fabric
Tag: v1.6.0
Published: 2025-09-11T11:12:01Z
Prerelease: no
Release notes:
v1.6.0 - September 11, 2025
💥 Breaking
- #647
git_credentialsandgit_credentials.sourceattributes are now *REQUIRED* forfabric_workspace_git
To keep the same behavior for Azure DevOps integration as before, use the Automatic for the source:
resource "fabric_workspace_git" "azdo" {
git_provider_details = {
git_provider_type = "AzureDevOps"
}
git_credentials = {
source = "Automatic"
}
}To keep the same behavior for GitHub integration as before, use the ConfiguredConnection for the source:
resource "fabric_workspace_git" "github" {
git_provider_details = {
git_provider_type = "GitHub"
}
git_credentials = {
source = "ConfiguredConnection"
connection_id = "11111111-1111-1111-1111-111111111111"
}
}To use a new option for Azure DevOps integration, use the ConfiguredConnection for the source and provide the connection_id:
resource "fabric_workspace_git" "azdo" {
git_provider_details = {
git_provider_type = "AzureDevOps"
}
git_credentials = {
source = "ConfiguredConnection"
connection_id = "11111111-1111-1111-1111-111111111111"
}
}✨ Added
- #647 Added
ConfiguredConnectioncredential support to thefabric_workspace_gitAzure DevOps provider.
💫 Changed
- #647 Enabled SPN support for
fabric_workspace_gitonly forConfiguredConnectioncredentials.
🪲 Fixed
- #646 Fix resource
fabric_connectionto support creation methods with empty parameters list