forked from pinecone-io/canopy
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmain.parameters.json
46 lines (46 loc) · 1.54 KB
/
main.parameters.json
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
{
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"environmentName": {
"value": "${AZURE_ENV_NAME}"
},
"location": {
"value": "${AZURE_LOCATION}"
},
"pineconeCanopyExists": {
"value": "${SERVICE_PINECONE_CANOPY_RESOURCE_EXISTS=false}"
},
"pineconeCanopyDefinition": {
"value": {
"settings": [
{
"name": "",
"value": "${VAR}",
"_comment_name": "The name of the environment variable when running in Azure. If empty, ignored.",
"_comment_value": "The value to provide. This can be a fixed literal, or an expression like ${VAR} to use the value of 'VAR' from the current environment."
},
{
"name": "",
"value": "${VAR_S}",
"secret": true,
"_comment_name": "The name of the environment variable when running in Azure. If empty, ignored.",
"_comment_value": "The value to provide. This can be a fixed literal, or an expression like ${VAR_S} to use the value of 'VAR_S' from the current environment."
}
]
}
},
"principalId": {
"value": "${AZURE_PRINCIPAL_ID}"
},
"pineconeApiKey": {
"value": "${PINECONE_API_KEY}"
},
"openAiKey": {
"value": "${OPENAI_API_KEY}"
},
"indexName": {
"value": "${INDEX_NAME}"
}
}
}