Last active
March 27, 2021 23:28
-
-
Save mattruma/120805a96744d7f33715760c212de6a1 to your computer and use it in GitHub Desktop.
Adventures with Bicep: How to Create an App Service for Containers
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
param resourcePrefix string | |
resource plan 'Microsoft.Web/serverfarms@2020-06-01' = { | |
name: '${resourcePrefix}plan' | |
location: resourceGroup().location | |
sku: { | |
name: 'B2' | |
capacity: 1 | |
} | |
kind: 'linux' | |
} | |
resource acr 'Microsoft.ContainerRegistry/registries@2020-11-01-preview' = { | |
name: '${resourcePrefix}acr' | |
location: resourceGroup().location | |
sku: { | |
name: 'Basic' | |
} | |
properties: { | |
adminUserEnabled: true | |
} | |
} | |
resource app 'Microsoft.Web/sites@2020-06-01' = { | |
name: '${resourcePrefix}app' | |
location: resourceGroup().location | |
kind: 'app,linux,container' | |
identity: { | |
type: 'SystemAssigned' | |
} | |
properties: { | |
serverFarmId: plan.id | |
httpsOnly: true | |
siteConfig: { | |
alwaysOn: true | |
minTlsVersion: '1.2' | |
appSettings: [ | |
{ | |
name: 'WEBSITES_ENABLE_APP_SERVICE_STORAGE' | |
value: 'false' | |
} | |
{ | |
name: 'DOCKER_REGISTRY_SERVER_PASSWORD' | |
value: listCredentials(resourceId('Microsoft.ContainerRegistry/registries', acr.name), '2020-11-01-preview').passwords[0].value | |
} | |
{ | |
name: 'DOCKER_REGISTRY_SERVER_URL' | |
value: '${resourcePrefix}acr.azurecr.io' | |
} | |
{ | |
name: 'DOCKER_REGISTRY_SERVER_USERNAME' | |
value: '${resourcePrefix}acr' | |
} | |
] | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment