Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions config/ev2config/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ clouds:
azureContainerRegistry:
domainNameSuffix: azurecr.us
cloudName: Fairfax
Comment thread
rachelvweber marked this conversation as resolved.
cosmosDB:
dnsSuffix: .documents.azure.us
entra:
federatedcredentials:
audience: api://AzureADTokenExchangeUSGov
Expand Down Expand Up @@ -88,6 +90,8 @@ clouds:
azureContainerRegistry:
domainNameSuffix: azurecr.io
cloudName: Public
cosmosDB:
dnsSuffix: .documents.azure.com
Comment thread
rachelvweber marked this conversation as resolved.
entra:
federatedcredentials:
audience: api://AzureADTokenExchange
Expand Down
5 changes: 5 additions & 0 deletions config/ev2config/sanitizer/sanitizedconfig.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@ type SanitizedCloudConfigValues struct {
Entra SanitizedEntraConfig `json:"entra"`
ARM SanitizedARMConfig `json:"arm"`
Geneva SanitizedGenevaConfig `json:"geneva"`
CosmosDB SanitizedCosmosDBConfig `json:"cosmosDB"`
}

type SanitizedCosmosDBConfig struct {
DnsSuffix string `json:"dnsSuffix"`
}

type KeyVaultValues struct {
Expand Down
Loading