Skip to content

Commit ceb1c3a

Browse files
authored
Fixed a wrong parameter in the command
`---catalog-name` and `--deployment-parameters` were not present and have been corrected to be normal, respectively.
1 parent a2da5de commit ceb1c3a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/deployment-environments/quickstart-create-access-environments.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,12 +88,12 @@ Run the following steps in Azure CLI to create an Environment and configure reso
8888
--catalog-item-name <catalog-item-name> ---catalog-name <catalog-name>
8989
```
9090
91-
If the specific *catalog-item* requires any parameters use `--deployment-parameters` and provide the parameters as a json-string or json-file, for example:
91+
If the specific *catalog-item* requires any parameters use `--parameters` and provide the parameters as a json-string or json-file, for example:
9292
```json
9393
$params = "{ 'name': 'firstMsi', 'location': 'northeurope' }"
9494
az devcenter dev environment create --dev-center-name <devcenter-name>
9595
--project-name <project-name> -n <name> --environment-type <environment-type-name>
96-
--catalog-item-name <catalog-item-name> ---catalog-name <catalog-name>
96+
--catalog-item-name <catalog-item-name> --catalog-name <catalog-name>
9797
--parameters $params
9898
```
9999

0 commit comments

Comments
 (0)