Skip to content

Commit a8f2ec7

Browse files
committed
Updated
1 parent dee48e0 commit a8f2ec7

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

articles/key-vault/general/tutorial-net-create-vault-azure-web-app.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ az keyvault create --name "<your-keyvault-name>" -g "myResourceGroup"
5454

5555
Make a note of the returned `vaultUri`, which will be in the format"https://<your-keyvault-name>.vault.azure.net/". It will be used in the [Update the code](#update-the-code) step.
5656

57-
You can now place a secret in your key vault with the [az keyvault secret set](/cli/azure/keyvault/secret?view=azure-cli-latest#az-keyvault-secret-set) command. Set the name of your secret to MySecret and the value to "Success!".
57+
You can now place a secret in your key vault with the [az keyvault secret set](/cli/azure/keyvault/secret?view=azure-cli-latest#az-keyvault-secret-set) command. Set the name of your secret to "MySecret" and the value to "Success!".
5858

5959
```azurecli
6060
az keyvault secret set --vault-name "<your-keyvault-name>" --name "MySecret" --value "Success!"
@@ -87,9 +87,9 @@ Open a web browser, and navigate to the app at `http://localhost:5000`.
8787

8888
You will see the **Hello World** message from the sample app displayed in the page.
8989

90-
### Initialize the git repository
90+
### Initialize the Git repository
9191

92-
In your terminal window, press **Ctrl+C** to exit the web server. Initialize a git repository for the .NET Core project.
92+
In your terminal window, press **Ctrl+C** to exit the web server. Initialize a Git repository for the .NET Core project.
9393

9494
```bash
9595
git init
@@ -148,7 +148,7 @@ When the App Service plan has been created, the Azure CLI shows information simi
148148
Create an [Azure web app](../../app-service/containers/app-service-linux-intro.md) in the `myAppServicePlan` App Service plan.
149149

150150
> [!Important]
151-
> Similar to Key Vault, an Azure Web App must have a unique name. Replace <your-webapp-name> with the name of your web app the following examples.
151+
> Similar to Key Vault, an Azure Web App must have a unique name. Replace \<your-webapp-name\> with the name of your web app the following examples.
152152
153153

154154
```azurecli-interactive
@@ -187,7 +187,7 @@ You will see the default webpage for a newly created Azure Web App.
187187

188188
### Deploy your local app
189189

190-
Back in the local terminal window, add an Azure remote to your local Git repository. Replace *\<deploymentLocalGitUrl-from-create-step>* with the URL of the Git remote that you saved from [Create a remote web app](#create-a-remote-web-app).
190+
Back in the local terminal window, add an Azure remote to your local Git repository, replacing *\<deploymentLocalGitUrl-from-create-step>* with the URL of the Git remote that you saved from [Create a remote web app](#create-a-remote-web-app) step.
191191

192192
```bash
193193
git remote add azure <deploymentLocalGitUrl-from-create-step>
@@ -302,7 +302,7 @@ Be certain to save your changes before proceeding to the next step.
302302

303303
### Redeploy your web app
304304

305-
Having updated your code, you can redeploy it to Azure with the following git commands:
305+
Having updated your code, you can redeploy it to Azure with the following Git commands:
306306

307307
```bash
308308
git add .

0 commit comments

Comments
 (0)