Skip to content

Commit 527812b

Browse files
Merge pull request #297006 from renato-marciano/patch-5
Update how-to-create-configure-dev-center.md
2 parents bcda46f + 8f1e105 commit 527812b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/deployment-environments/how-to-create-configure-dev-center.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -169,15 +169,15 @@ You can use this [sample catalog](https://github.com/Azure/deployment-environmen
169169
1. Retrieve the secret identifier:
170170

171171
```azurecli
172-
SECRETID=$(az keyvault secret show --vault-name <keyvaultName> --name GHPAT --query id -o tsv)
173-
echo $SECRETID
172+
$SECRETID = az keyvault secret show --vault-name <keyvaultName> --name GHPAT --query id -o tsv
173+
Write-Output $SECRETID
174174
```
175175

176176
1. Add the catalog:
177177

178178
```azurecli
179179
# Sample catalog example
180-
REPO_URL="<clone URL that you copied earlier>"
180+
$REPO_URL = "<clone URL that you copied earlier>"
181181
az devcenter admin catalog create --git-hub path="/Environments" branch="main" secret-identifier=$SECRETID uri=$REPO_URL -n <catalogName> -d <devcenterName>
182182
```
183183

0 commit comments

Comments
 (0)