@@ -6,17 +6,91 @@ management:
66 endpoints :
77 enabled-by-default : false
88
9- # csm:
10- # platform:
11- # # TODO ASO : use a dedicated 'test' value, with specific test implementations for services
12- # vendor: azure
13- # azure:
14- # cosmos:
15- # # Base64
16- # key: "ZmFrZS1rZXkK"
17- # uri: "https://faketestaccount.documents.azure.com:443/"
189csm :
1910 platform :
11+ azure :
12+ appIdUri : " http://dev.api.cosmotech.com"
13+ credentials :
14+ # Deprecated - use csm.platform.azure.credentials.core.tenantId instead
15+ tenantId : " "
16+ # Deprecated - use csm.platform.azure.credentials.core.clientId instead
17+ clientId : " "
18+ # Deprecated - use csm.platform.azure.credentials.core.clientSecret instead
19+ clientSecret : " "
20+ # Deprecated - use csm.platform.azure.credentials.core.aadPodIdBinding instead
21+ aadPodIdBinding : " phoenix-pod-identity"
22+ core :
23+ tenantId : " ${csm.platform.azure.credentials.tenantId}"
24+ clientId : " ${csm.platform.azure.credentials.clientId}"
25+ clientSecret : " ${csm.platform.azure.credentials.clientSecret}"
26+ aadPodIdBinding : " ${csm.platform.azure.credentials.aadPodIdBinding}"
27+ customer :
28+ tenantId : null
29+ clientId : null
30+ clientSecret : null
31+ storage :
32+ baseUri : " "
33+ resourceUri : " "
34+ # Storage account name length should be between 3 and 24 and use numbers and lower-case letters only
35+ account-name : " storageaccountname"
36+ # Fill storage account access key copied from portal
37+ account-key : " [storage-account-access-key]"
38+ # Fill storage endpoint URL copied from portal
39+ blob-endpoint : " https://${csm.platform.azure.storage.account-name}.blob.core.windows.net"
40+ connection-string : " DefaultEndpointsProtocol=https;AccountName=${csm.platform.azure.storage.account-name};AccountKey=${csm.platform.azure.storage.account-key};EndpointSuffix=core.windows.net"
41+ containerRegistries :
42+ core : ghcr.io
43+ solutions : " "
44+ eventBus :
45+ baseUri : " "
46+ # One of 'tenant_client_credentials' or 'shared_access_policy'.
47+ # Due to PROD-8071, shared_access_policy is needed when the platform is deployed in a tenant
48+ # different from the core Platform one. This is applicable to managed applications
49+ # provisioned via the Azure Marketplace
50+ authentication :
51+ strategy : tenant_client_credentials
52+ sharedAccessPolicy :
53+ namespace :
54+ name : RootManageSharedAccessKey
55+ key : null
56+ dataWarehouseCluster :
57+ baseUri : " "
58+ options :
59+ ingestionUri : " "
60+ keyVault :
61+ analytics :
62+ resourceUri : " "
63+ instrumentationKey : " "
64+ connectionString : " InstrumentationKey=${csm.platform.azure.analytics.instrumentationKey};IngestionEndpoint=https://francecentral-0.in.applicationinsights.azure.com/"
65+ cosmos :
66+ connectionMode : " "
67+ consistencyLevel : " "
68+ core-database :
69+ name : phoenix-core
70+ connectors :
71+ container : connectors
72+ organizations :
73+ container : organizations
74+ users :
75+ container : users
76+ key : " azurecosmosdbkey"
77+ populateQueryMetrics : true
78+ uri : " https://azurecosmosdbkey.documents.azure.com:443/"
79+ data-ingestion :
80+ # Number of seconds to wait after a scenario run workflow end time, before
81+ # starting to check ADX for data ingestion state.
82+ # See https://bit.ly/3FXshzE for the rationale
83+ waiting-time-before-ingestion-seconds : 15
84+ # number of minutes after a scenario run workflow end time during which an ingestion failure
85+ # detected is considered linked to the current scenario run
86+ ingestion-observation-window-to-be-considered-a-failure-minutes : 5
87+ # number of seconds to wait after the checking the scenario validation ingestion status
88+ sleeping-time-before-querying-scenario-validation-status-seconds : 5
89+ # number of retry to query the scenario validation status
90+ max-retry-authorized : 5
91+ state :
92+ # the timeout in second before considering no data in probes measures and control plane is an issue
93+ no-data-time-out-seconds : 60
2094 metrics :
2195 enabled : false
2296 identityProvider :
0 commit comments