-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAzNotesSample.bicep
73 lines (66 loc) · 1.86 KB
/
AzNotesSample.bicep
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
param webAppName string = resourceGroup().name
param sku string = 'F1' // The SKU of App Service Plan
param location string = resourceGroup().location // Location for all resources
param repositoryUrl string = 'https://github.com/jvmap/AzNotesSample.git'
param branch string = 'main'
// Many names in Azure need to be globally unique.
// Therefore, we produce a random suffix based on the globally unique parent resource group id.
var suffix = uniqueString(resourceGroup().id)
var webAppUniqueName = '${webAppName}-${suffix}'
var appServicePlanName = toLower('plan${suffix}')
resource appServicePlan 'Microsoft.Web/serverfarms@2022-03-01' = {
name: appServicePlanName
location: location
properties: {
reserved: false
}
sku: {
name: sku
}
kind: 'windows'
}
resource appService 'Microsoft.Web/sites@2022-03-01' = {
name: webAppUniqueName
location: location
properties: {
serverFarmId: appServicePlan.id
siteConfig: {
appSettings: [
{ name: 'STORAGE_ACCOUNT_NAME', value: storage.name }
{ name: 'MANAGED_IDENTITY', value: '1'}
]
}
}
identity: {
type: 'SystemAssigned'
}
}
resource srcControls 'Microsoft.Web/sites/sourcecontrols@2021-01-01' = {
name: 'web'
parent: appService
properties: {
repoUrl: repositoryUrl
branch: branch
isManualIntegration: true
}
}
resource storage 'Microsoft.Storage/storageAccounts@2022-09-01' = {
kind: 'StorageV2'
location: location
name: 'stor${suffix}'
sku: {
name: 'Standard_LRS'
}
properties: {
allowBlobPublicAccess: false
}
}
var roleDefinitionID = 'ba92f5b4-2d11-453d-a403-e96b0029c9fe' // Storage Blob Data Contributor
module storagePermission 'storage_permission.bicep' = {
name: 'storagePermission'
params: {
principalId: appService.identity.principalId
roleDefinitionId: roleDefinitionID
storageAccountName: storage.name
}
}