Skip to content

Commit

Permalink
Fix parameters for deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
betaniat committed Oct 17, 2024
1 parent f304d87 commit 73a180c
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
CFG_IDA_CLIENT_ID="bd4b0a3e-af88-4b7c-aab2-ad4956f2f789"
CFG_IDA_SECRET_NAME="AzureAd--ClientSecret"
# Resource group and key vault name for key vault secret injection.
CFG_RESOURCE_GROUP="IDA-dev"
CFG_VAULT_NAME="ida1-dev"
CFG_RESOURCE_GROUP="IDAdev"
CFG_VAULT_NAME="idakv-dev"

# Storage account
CFG_STORAGE_ACCOUNT_NAME_RAW="storageraw1dev"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ CFG_IDA_CLIENT_ID="16df0336-e42b-45c6-a380-8f6fe66e1fa3"
CFG_IDA_SECRET_NAME="AzureAd--ClientSecret"

# Resource group and key vault name for key vault secret injection.
CFG_RESOURCE_GROUP="IDA-prod"
CFG_VAULT_NAME="ida1-prod"
CFG_RESOURCE_GROUP="IDAprod"
CFG_VAULT_NAME="idakv-prod"

# Storage account
CFG_STORAGE_ACCOUNT_NAME_RAW="storageraw1prod"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ CFG_IDA_CLIENT_ID="6f40ba9b-2029-400e-85e9-f1922cbf12c1"
CFG_IDA_SECRET_NAME="AzureAd--ClientSecret"

# Resource group and key vault name for key vault secret injection.
CFG_RESOURCE_GROUP="IDA-staging"
CFG_VAULT_NAME="ida1-staging"
CFG_RESOURCE_GROUP="IDAstaging"
CFG_VAULT_NAME="idakv-staging"

# Storage account
CFG_STORAGE_ACCOUNT_NAME_RAW="storageraw1staging"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

# Load variables from .cfg file
source ./scripts/automation/appRegistration/app-injection-secrets-param-prod.cfg
source ./path/to/config.cfg

# Generate new connection strings for storage accounts:
rawConnectionString=$(az storage account show-connection-string -g $CFG_RESOURCE_GROUP -n $CFG_STORAGE_ACCOUNT_NAME_RAW --out tsv)
Expand Down
2 changes: 1 addition & 1 deletion scripts/automation/infrastructure.bicepparam
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ param resourceGroupName = 'IDA${environment}'
param location = 'northeurope'
param objectIdFgRobots = '5ac08731-48dd-4499-9151-7bf6b8ab8eac'

param keyVaultName = 'ida1-${environment}'
param keyVaultName = 'idakv-${environment}'

param administratorLogin = 'idapostgresqlserver_${environment}'
param administratorLoginPassword = ''
Expand Down

0 comments on commit 73a180c

Please sign in to comment.