You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Shell variables store values for future use and can be used to pass values to command parameters. Shell variables allow for the reuse of commands, both on their own and in scripts. This tutorial uses shell variables for easier customization of command parameters. To use your own parameter values instead of using the provided values, change the values assigned to the shell variables. For more information about shell variables, see [Use shell variables](./azure-cli-variables.md#use-shell-variables).
26
+
Shell variables store values for future use and can be used to pass values to command parameters.
27
+
Shell variables allow for the reuse of commands, both on their own and in scripts. This tutorial
28
+
uses shell variables for easier customization of command parameters. To use your own parameter
29
+
values instead of using the provided values, change the values assigned to the shell variables. For
30
+
more information about shell variables, see [Use shell variables][01].
26
31
27
32
## Create a resource group
28
33
29
-
In Azure, all resources are allocated in a resource management group. Resource groups provide logical groupings of resources
30
-
that make them easier to work with as a collection. Use the [az group create](/cli/azure/group#az_group_create) command to create a resource group named `VMTutorialResources`.
34
+
In Azure, all resources are allocated in a resource management group. Resource groups provide
35
+
logical groupings of resources that make them easier to work with as a collection. Use the
36
+
[az group create][03] command to create a resource group named `VMTutorialResources`.
31
37
32
38
# [Bash](#tab/bash)
33
39
@@ -49,22 +55,33 @@ $location = "eastus"
49
55
az group create --name $resourceGroup --location $location
50
56
```
51
57
52
-
***
58
+
---
53
59
54
60
## Create a resource group in interactive mode
55
61
56
-
Interactive mode offers new AI functionalities that allow the user to run and search for commands more efficiently. To get a better understanding of required parameters and steps related to `az group create`, try out Azure CLI in interactive mode by running the `az interactive` command. Please note that all commands throughout this tutorial can be run in interactive mode.
62
+
Interactive mode offers new AI functionalities that allow the user to run and search for commands
63
+
more efficiently. To get a better understanding of required parameters and steps related to
64
+
`az group create`, try out Azure CLI in interactive mode by running the `az interactive` command.
65
+
Please note that all commands throughout this tutorial can be run in interactive mode.
57
66
58
67
```azurecli
59
68
# install interactive mode
60
69
az interactive
61
70
```
62
71
63
-
In the following example, the command recommendation feature in interactive mode lists and defines all of the required parameters needed for `az group create`:
72
+
In the following example, the command recommendation feature in interactive mode lists and defines
73
+
all of the required parameters needed for `az group create`:
0 commit comments