-
Notifications
You must be signed in to change notification settings - Fork 297
Expand file tree
/
Copy pathazure.yaml
More file actions
36 lines (36 loc) · 807 Bytes
/
azure.yaml
File metadata and controls
36 lines (36 loc) · 807 Bytes
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
# yaml-language-server: $schema=https://raw.githubusercontent.com/Azure/azure-dev/main/schemas/v1.0/azure.yaml.json
name: azure-gpt-rag
metadata:
template: azure-gpt-rag
infra:
provider: bicep
path: infra
module: main
hooks:
preprovision:
posix:
shell: sh
run: scripts/preProvision.sh
interactive: true
windows:
shell: pwsh
run: scripts/preProvision.ps1
interactive: true
postprovision:
posix:
shell: sh
run: scripts/postProvision.sh
interactive: true
windows:
shell: pwsh
run: scripts/postProvision.ps1
interactive: true
predeploy:
posix:
shell: sh
run: scripts/preDeploy.sh
interactive: true
windows:
shell: pwsh
run: scripts/preDeploy.ps1
interactive: true