ReleaseMicrosoftMicrosoftpublished Sep 11, 2025seen Jun 26

microsoft/terraform-provider-fabric v1.6.0

microsoft/terraform-provider-fabric

Open original ↗

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_credentials and git_credentials.source attributes are now *REQUIRED* for fabric_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 ConfiguredConnection credential support to the fabric_workspace_git Azure DevOps provider.

💫 Changed

  • #647 Enabled SPN support for fabric_workspace_git only for ConfiguredConnection credentials.

🪲 Fixed

  • #646 Fix resource fabric_connection to support creation methods with empty parameters list