Skip to content

Commit 354324c

Browse files
authored
Fix hardcoded values in ACA deploy include (#338)
1 parent a4a91ad commit 354324c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/deployment/azure/includes/aca-bicep-cli-shared-steps.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -105,13 +105,13 @@ Azure Container Apps (ACA) is an ideal hosting platform for Aspire apps. You can
105105
# [PowerShell](#tab/powershell)
106106

107107
```powershell
108-
az group create --location westus --name aspiretoacarg
108+
az group create --location $env:LOCATION --name $env:RESOURCE_GROUP
109109
```
110110
111111
# [Bash](#tab/bash)
112112
113113
```bash
114-
az group create --location westus --name aspiretoacarg
114+
az group create --location $LOCATION --name $RESOURCE_GROUP
115115
```
116116
117117
---

0 commit comments

Comments
 (0)