File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
articles/deployment-environments Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -169,15 +169,15 @@ You can use this [sample catalog](https://github.com/Azure/deployment-environmen
169
169
1 . Retrieve the secret identifier:
170
170
171
171
``` 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
174
174
```
175
175
176
176
1 . Add the catalog:
177
177
178
178
``` azurecli
179
179
# Sample catalog example
180
- REPO_URL= "<clone URL that you copied earlier>"
180
+ $ REPO_URL = "<clone URL that you copied earlier>"
181
181
az devcenter admin catalog create --git-hub path="/Environments" branch="main" secret-identifier=$SECRETID uri=$REPO_URL -n <catalogName> -d <devcenterName>
182
182
```
183
183
You can’t perform that action at this time.
0 commit comments