Skip to content

Fix missing request body error in config_RunExportJobs pipeline #1286

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Feb 4, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions docs/_resources/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,10 @@ Legend:
> 1. Expand details about supported datasets in documentation.
> 1. Updated the default setting for Data Explorer trusted external tenants from "All tenants" to "My tenant only".
> - This change may cause breaking issues for Data Explorer clusters accessed by users from external tenants.
>
> πŸ› οΈ Fixed:
>
> 1. Added missing request body to fix the false positive `config_RunExportJobs` pipeline validation errors in Data Factory ([#1250](https://github.com/microsoft/finops-toolkit/issues/1250))

πŸ“Š Power BI reports
{: .fs-5 .fw-500 .mt-4 mb-0 }
Expand Down
3 changes: 2 additions & 1 deletion src/templates/finops-hub/modules/dataFactory.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -2241,15 +2241,16 @@ resource pipeline_RunExportJobs 'Microsoft.DataFactory/factories/pipelines@2018-
}
userProperties: []
typeProperties: {
method: 'POST'
url: {
value: '@{replace(toLower(concat(variables(\'resourceManagementUri\'),item().id)), \'com//\', \'com/\')}/run?api-version=${exportApiVersion}'
type: 'Expression'
}
method: 'POST'
headers: {
'x-ms-command-name': 'FinOpsToolkit.Hubs.config_RunExportJobs@${ftkVersion}'
ClientType: 'FinOpsToolkit.Hubs@${ftkVersion}'
}
body: '{}'
authentication: {
type: 'MSI'
resource: {
Expand Down