Skip to content
This repository was archived by the owner on May 27, 2025. It is now read-only.

Commit a06deb1

Browse files
committed
some shell code cleanup and variable renaming for better clarity
1 parent 4370b0c commit a06deb1

File tree

5 files changed

+194
-112
lines changed

5 files changed

+194
-112
lines changed

infra/core/apim/openapi.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"comment": "This is a placeholder for an OpenAPI specification. It willreplaced with an actual OpenAPI spec during th deployment process."
2+
"comment": "This file is a placeholder for an OpenAPI specification. It will get replaced with an actual OpenAPI spec during the deployment process."
33
}

infra/core/scripts/deployment-script.bicep

Lines changed: 3 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,9 @@ param location string
44
param subscriptionId string
55
param tenantid string
66

7-
param acrserver string
8-
param azure_location string
9-
107
param azure_acr_login_server string
11-
param azure_acr_name string
8+
9+
param azure_location string
1210

1311
param azure_aks_name string
1412
param azure_aks_controlplanefqdn string
@@ -109,20 +107,12 @@ resource deploymentScript 'Microsoft.Resources/deploymentScripts@2023-08-01' = {
109107
}
110108
{
111109
name: 'ACR_SERVER'
112-
value: acrserver
110+
value: azure_acr_login_server
113111
}
114112
{
115113
name: 'AZURE_LOCATION'
116114
value: azure_location
117115
}
118-
{
119-
name: 'AZURE_ACR_LOGIN_SERVER'
120-
value: azure_acr_login_server
121-
}
122-
{
123-
name: 'AZURE_ACR_NAME'
124-
value: azure_acr_name
125-
}
126116
{
127117
name: 'AZURE_AKS_NAME'
128118
value: azure_aks_name

0 commit comments

Comments
 (0)