We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
E.g. Automation Certificate
{ "resources": [ { "name": "automationCertificate1", "type": "Microsoft.Automation/automationAccounts/certificates", /// <<<< ERROR HERE too many segments "apiVersion": "2015-10-31", "dependsOn": [ "[resourceId('Microsoft.Automation/automationAccounts', 'automationAccount1')]" ], "properties": { "base64Value": "base64Value", "description": "description", "thumbprint": "thumbprint", "isExportable": true } }// Insert here: resource ], "$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "variables": { // Insert here: variable }, "parameters": { // Insert here: parameter }, "outputs": { // Insert here: output }, "functions": [{ "namespace": "udf", "members": { // Insert here: user function } }] }
I assume this is because the snippet should be used as a child.
The text was updated successfully, but these errors were encountered:
Moved to #748
Sorry, something went wrong.
No branches or pull requests
E.g. Automation Certificate
{
"resources": [
{
"name": "automationCertificate1",
"type": "Microsoft.Automation/automationAccounts/certificates", /// <<<< ERROR HERE too many segments
"apiVersion": "2015-10-31",
"dependsOn": [
"[resourceId('Microsoft.Automation/automationAccounts', 'automationAccount1')]"
],
"properties": {
"base64Value": "base64Value",
"description": "description",
"thumbprint": "thumbprint",
"isExportable": true
}
}// Insert here: resource
],
"$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"variables": {
// Insert here: variable
},
"parameters": {
// Insert here: parameter
},
"outputs": {
// Insert here: output
},
"functions": [{
"namespace": "udf",
"members": {
// Insert here: user function
}
}]
}
I assume this is because the snippet should be used as a child.
The text was updated successfully, but these errors were encountered: