-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathazure.yaml
More file actions
42 lines (41 loc) · 1.16 KB
/
azure.yaml
File metadata and controls
42 lines (41 loc) · 1.16 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
name: deploy-your-ai-application-in-production
requiredVersions:
azd: ">=1.15.0 !=1.17.1"
infra:
provider: "bicep"
metadata:
template: deploy-your-ai-application-in-production@1.0
hooks:
preup:
windows:
shell: pwsh
run: ./scripts/set_conns_env_vars.ps1
interactive: true
continueOnError: false
posix:
shell: sh
run: sudo chmod u+r+x ./scripts/set_conns_env_vars.sh; sudo ./scripts/set_conns_env_vars.sh
interactive: true
continueOnError: false
preprovision:
posix:
shell: sh
run: sudo chmod u+r+x ./scripts/auth_init.sh; sudo ./scripts/auth_init.sh
interactive: true
continueOnError: false
windows:
shell: pwsh
run: ./scripts/auth_init.ps1
interactive: true
continueOnError: false
postprovision:
posix:
shell: sh
run: sudo chmod u+r+x ./scripts/process_sample_data.sh; sudo chmod u+r+x ./scripts/postprovision.sh; sudo ./scripts/postprovision.sh
interactive: true
continueOnError: false
windows:
shell: pwsh
run: ./scripts/postprovision.ps1;
interactive: true
continueOnError: false