-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathSecretManagementToACR.Rollout.json
More file actions
60 lines (60 loc) · 1.44 KB
/
SecretManagementToACR.Rollout.json
File metadata and controls
60 lines (60 loc) · 1.44 KB
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
{
"$schema": "https://ev2schema.azure.net/schemas/2020-01-01/rolloutParameters.json",
"contentVersion": "1.0.0.0",
"shellExtensions": [
{
"name": "Run",
"type": "Run",
"properties": {
"maxExecutionTime": "PT2H"
},
"package": {
"reference": {
"path": "Shell/Run.tar"
}
},
"launch": {
"command": [
"/bin/bash",
"-c",
"pwsh ./Run.ps1"
],
"environmentVariables": [
{
"name": "SECRET_MANAGEMENT_MODULE",
"reference":
{
"path": "SrcFiles\\Microsoft.PowerShell.SecretManagement.nupkg"
}
},
{
"name": "DESTINATION_ACR_NAME",
"value": "default"
},
{
"name": "MI_NAME",
"value": "default"
},
{
"name": "MI_CLIENTID",
"value": "default"
},
{
"name": "SECRET_MANAGEMENT_VERSION",
"value": "default"
},
{
"name": "DESTINATION_ACR_URI",
"value": "default"
}
],
"identity": {
"type": "userAssigned",
"userAssignedIdentities": [
"default"
]
}
}
}
]
}