-
Notifications
You must be signed in to change notification settings - Fork 13
/
nested_workload-stamp-prereqs.bicep
57 lines (52 loc) · 1.54 KB
/
nested_workload-stamp-prereqs.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
@description('Azure Container Registry resource group location.')
param location string = resourceGroup().location
resource workflowManagedIdentity 'Microsoft.ManagedIdentity/userAssignedIdentities@2023-01-31' = {
name: 'uid-workflow'
location: location
tags: {
displayName: 'workflow managed identity'
what: 'rbac'
reason: 'aad-workload-identity'
app: 'fabrikam-workflow'
}
}
resource deliveryManagedIdentity 'Microsoft.ManagedIdentity/userAssignedIdentities@2023-01-31' = {
name: 'uid-delivery'
location: location
tags: {
displayName: 'delivery managed identity'
what: 'rbac'
reason: 'aad-workload-identity'
app: 'fabrikam-delivery'
}
}
resource droneschedulerManagedIdentity 'Microsoft.ManagedIdentity/userAssignedIdentities@2023-01-31' = {
name: 'uid-dronescheduler'
location: location
tags: {
displayName: 'dronescheduler managed identity'
what: 'rbac'
reason: 'aad-workload-identity'
app: 'fabrikam-dronescheduler'
}
}
resource ingestionManagedIdentity 'Microsoft.ManagedIdentity/userAssignedIdentities@2023-01-31' = {
name: 'uid-ingestion'
location: location
tags: {
displayName: 'ingestion managed identity'
what: 'rbac'
reason: 'aad-workload-identity'
app: 'fabrikam-ingestion'
}
}
resource packageManagedIdentity 'Microsoft.ManagedIdentity/userAssignedIdentities@2023-01-31' = {
name: 'uid-package'
location: location
tags: {
displayName: 'package managed identity'
what: 'rbac'
reason: 'aad-workload-identity'
app: 'fabrikam-package'
}
}