skip to Main Content

Azure – The Resource 'Microsoft.Web/sites/xxxxx' under resource group 'rg-idn' was not found

I try to make a template for web app for docker. And I have the following json file: { "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "sites_docker_webscraper_name": { "defaultValue": "docker-webscraper", "type": "String" }, "serverfarms_internet_suite_externalid": { "defaultValue": "/subscriptions/fea4c865-1e54-44b3-ba1d-07315468f083/resourceGroups/rg-idn-nvwa-sas_nvwa/providers/Microsoft.Web/serverfarms/crinternetsuite", "type": "String" } },…

VIEW QUESTION

azure webapp for containers docker-compose.yml referencing bitnami images

First time using Azure. I have the following docker-compose.yml (some values X'd here for security) version: '2' services: mariadb: image: docker.io/bitnami/mariadb:10.6 environment: - MARIADB_USER=bn_moodle - MARIADB_PASSWORD=XXXXX - MARIADB_ROOT_PASSWORD=XXXXX - MARIADB_DATABASE=bitnami_moodle - MARIADB_CHARACTER_SET=utf8mb4 - MARIADB_COLLATE=utf8mb4_unicode_ci volumes: - 'mariadb_data:/bitnami/mariadb' moodle: image: docker.io/bitnami/moodle:3…

VIEW QUESTION

Azure bicep dependsOn for existing resource

From my "main" bicep module, I would like to reference an existing function that is created by a module called from the same "main" bicep. So used the following code: resource functionApp 'Microsoft.Web/sites@2021-02-01' existing = { name: functionAppName scope: resourceGroup(subscriptionId,…

VIEW QUESTION
Back To Top
Search