Global parameters for data factory #13990
Closed
Kennedine
started this conversation in
Authoring Help
Replies: 1 comment
-
Figured it out myself, I'll leave some working syntax if somebody else stumbles upon this having the same problem with it :) resource default1 'Microsoft.DataFactory/factories/globalParameters@2018-06-01' = {
} |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am struggling to get 'Microsoft.DataFactory/factories/globalParameters@2018-06-01' to work.
This is the code from the learn page here: https://learn.microsoft.com/en-us/azure/templates/microsoft.datafactory/factories/globalparameters?pivots=deployment-language-bicep
resource symbolicname 'Microsoft.DataFactory/factories/globalParameters@2018-06-01' = {
name: 'string'
parent: resourceSymbolicName
properties: {
{customized property}: {
type: 'string'
value: any()
}
}
}
I cannot for the life of me get this to work, the {customized property}: { gives a compile time error in VS CODE and if I format it like how I would expect it to be without the {customized property}: { part I get a runtime error.
I have tried researching on what customized property means, but with no luck.
I have tried both using simple hardcoded values or using an array with the values for name, type and string.
Beta Was this translation helpful? Give feedback.
All reactions