plain-eye-9759
01/16/2020, 10:37 AMError Expanding the parameters_body for Azure RM Template Deployment
I have also tried passing the parameters directly with no success.
Please help!
const deployment = new azure.core.TemplateDeployment(name, {
resourceGroupName: args.resourceGroupName,
name,
templateBody: pulumi.output(template).apply(JSON.stringify),
// parametersBody: "params.json",
// parametersBody: {
// "certContent": {
// "reference": {
// "keyVault": {
// "id": "/id-of-the-keyvault"
// },
// "secretName": "SecretName"
// }
// }
// },
deploymentMode: "Incremental",
}, { parent: this });
parametersBody: pulumi.output(params).apply(JSON.stringify)