Hi @Tsu Kernik
Thanks for the question and using MS Q&A platform.
Please correct me if my understanding is wrong. You are looking to parameterize the Notebook parameter, to replace your Spark pool name with a different value (without the default value) when deploying to a higher environment. You can use the below code in your template-parameter-definition file. This code will expose the notebook parameters.
"Microsoft.Synapse/workspaces/notebooks": {
"properties": {
"bigDataPool": {
"referenceName": "="
},
"metadata": {
"a365ComputeOptions": {
"id": "=",
"name": "=",
"endpoint": "="
}
}
}
}
on the next step, go to the Workspace Deployment task in your Release Pipeline and add these new parameters in the “OverrideParameters” section. Here I have added Notebook 1_properties_bigDataPool_referenceName = DemoUAT ( to change the sparkpool name from demo to DemoUAT)
I hope this helps. Please let me know if you have any further questions.