skip to Main Content

Ubuntu – The template parameter is not valid. The parameter value must be null

I'm a beginner on Azure DevOps and I'm trying to create a CI pipeline for an simple ARM Template. So I have this file (test_template.json): { "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "storageAccounts_dqed01dls_name": { "defaultValue": "dqed01als", "type": "String" }, "virtualNetworks_dpm01_d_vnet_externalid":…

VIEW QUESTION

Are both AzureResourceGroupDeployment and AzureResourceManagerTemplateDeployment same?

Are both AzureResourceGroupDeployment and AzureResourceManagerTemplateDeployment same? - task: AzureResourceManagerTemplateDeployment@3 displayName: 'deploy using AzureResourceManagerTemplateDeployment' inputs: azureResourceManagerConnection: sc subscriptionId: id resourceGroupName: rg location: $(location) csmFile: ${{ parameters.root }}/Infrastructure/data/template.bicep csmParametersFile: env.json overrideParameters: '-environmentAbbreviation "env"' deploymentMode: 'Incremental' deploymentOutputs: dataoutputs - task: AzureResourceGroupDeployment@2 displayName: 'deploy…

VIEW QUESTION

Redis – Get Read only connection strings of App Configuration in ARM Template

Hi I want to add Application Config Read Only Connection string in ARM Template "appSettingsShared": { "value": [ { "name": "RedisCache:ConnectionString", "value": "[concat(variables('RedisCacheName'),'.redis.cache.windows.net:6380,abortConnect=false,ssl=true,password=', listKeys(resourceId('Microsoft.Cache/Redis', variables('RedisCacheName')), '2015-08-01').primaryKey)]" }, { "name": "AppConfig:ConnectionString", "value": "???" } ] I know how to do it…

VIEW QUESTION
Back To Top
Search