v1.6.0 - September 11, 2025
💥 Breaking
- #647
git_credentials
andgit_credentials.source
attributes 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
ConfiguredConnection
credential support to thefabric_workspace_git
Azure DevOps provider.
💫 Changed
- #647 Enabled SPN support for
fabric_workspace_git
only forConfiguredConnection
credentials.
🪲 Fixed
- #646 Fix resource
fabric_connection
to support creation methods with empty parameters list