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
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.
56
56
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!".
58
58
59
59
```azurecli
60
60
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`.
87
87
88
88
You will see the **Hello World** message from the sample app displayed in the page.
89
89
90
-
### Initialize the git repository
90
+
### Initialize the Git repository
91
91
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.
93
93
94
94
```bash
95
95
git init
@@ -148,7 +148,7 @@ When the App Service plan has been created, the Azure CLI shows information simi
148
148
Create an [Azure web app](../../app-service/containers/app-service-linux-intro.md) in the `myAppServicePlan` App Service plan.
149
149
150
150
> [!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.
152
152
153
153
154
154
```azurecli-interactive
@@ -187,7 +187,7 @@ You will see the default webpage for a newly created Azure Web App.
187
187
188
188
### Deploy your local app
189
189
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.
0 commit comments