Skip to content

Commit 9ac6b34

Browse files
Merge pull request #256435 from paolamvhz/RoomsCLIConnection
Update rooms-quickstart-az-cli to use AZURE_COMMUNICATION_CONNECTION_…
2 parents eba89c4 + 8d40c88 commit 9ac6b34

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/communication-services/quickstarts/rooms/includes/rooms-quickstart-az-cli.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ You can configure the `AZURE_COMMUNICATION_CONNECTION_STRING` environment variab
3939
##### [Windows](#tab/windows)
4040

4141
```console
42-
setx AZURE_COMMUNICATION_STRING "<yourConnectionString>"
42+
setx AZURE_COMMUNICATION_CONNECTION_STRING "<connectionString>"
4343
```
4444

4545
After you add the environment variable, you may need to restart any running programs that will need to read the environment variable, including the console window. For example, if you're using Visual Studio as your editor, restart Visual Studio before running the example.
@@ -49,7 +49,7 @@ After you add the environment variable, you may need to restart any running prog
4949
Edit your **`.zshrc`**, and add the environment variable:
5050

5151
```bash
52-
export AZURE_COMMUNICATION_STRING="<connectionString>"
52+
export AZURE_COMMUNICATION_CONNECTION_STRING="<connectionString>"
5353
```
5454

5555
After you add the environment variable, run `source ~/.zshrc` from your console window to make the changes effective. If you created the environment variable with your IDE open, you may need to close and reopen the editor, IDE, or shell in order to access the variable.
@@ -59,7 +59,7 @@ After you add the environment variable, run `source ~/.zshrc` from your console
5959
Edit your **`.bash_profile`**, and add the environment variable:
6060

6161
```bash
62-
export AZURE_COMMUNICATION_STRING="<connectionString>"
62+
export AZURE_COMMUNICATION_CONNECTION_STRING="<connectionString>"
6363
```
6464

6565
After you add the environment variable, run `source ~/.bash_profile` from your console window to make the changes effective. If you created the environment variable with your IDE open, you may need to close and reopen the editor, IDE, or shell in order to access the variable.

0 commit comments

Comments
 (0)