Skip to content

v1.6.0

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 11 Sep 11:12
· 17 commits to main since this release
728ce03

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