Skip to content

Commit 485b923

Browse files
committed
Edits per feedback
1 parent 47bd159 commit 485b923

File tree

3 files changed

+13
-12
lines changed

3 files changed

+13
-12
lines changed
Loading
Loading

articles/jenkins/tutorial-jenkins-deploy-web-app-azure-app-service.md

+13-12
Original file line numberDiff line numberDiff line change
@@ -200,19 +200,20 @@ and elsewhere to these credential properties:
200200
| Property | Value | Description |
201201
|----------|-------|-------------|
202202
| **Kind** | Azure Service Principal | The type of credential you're using |
203-
| **Subscription ID** | <*yourAzureSubscription-ID*> | The GUID value for your Azure subscription |
204-
| **Client ID** | <*yourServicePrincipal-ID*> | The `appId` GUID value for your Azure service principal |
205-
| **Client Secret** | <*yourSecurePassword*> | The `password` value or "secret" for your Azure service principal |
206-
| **OAuth 2.0 Token Endpoint** | https://login.windows.net/<*yourAzureActiveDirectoryTenant-ID*> | The URL endpoint to use for authentication, including the GUID that identifies your Azure Active Directory tenant |
207-
| **ID** | <*yourServicePrincipal-ID*> | The `appId` GUID value for your Azure service principal |
203+
| **Subscription ID** | <*yourAzureSubscription-ID*> | The GUID for your Azure subscription <p>**Tip**: If you don't know your Azure subscription ID, run this Azure CLI command from either the command line or in Cloud Shell, and then use the `id` GUID value: <p>`az account list` |
204+
| **Client ID** | <*yourServicePrincipal-ID*> | The `appId` GUID you previously created for your Azure service principal |
205+
| **Client Secret** | <*yourSecurePassword*> | The `password` value or "secret" you previously used for your Azure service principal |
206+
| **OAuth 2.0 Token Endpoint** | `https://login.windows.net/`<*yourAzureActiveDirectoryTenant-ID*> | The URL endpoint to use for authentication and includes the GUID for your Azure Active Directory tenant |
207+
| **ID** | <*yourServicePrincipal-ID*> | The `appId` GUID you previously created for your Azure service principal |
208208
||||
209209

210-
If you don't know your Azure subscription ID, run this Azure
211-
CLI command from either the command line or in Cloud Shell:
212-
213-
```azurecli-interactive
214-
az account list
215-
```
210+
For example:
211+
212+
![Add Azure service principal credentials](media/jenkins-java-quickstart/add-service-principal-credentials.png)
213+
214+
1. To confirm your service principal works,
215+
choose **Verify Service Principal**.
216+
When you're done, choose **OK**.
216217

217218
## Create build and deploy pipeline
218219

@@ -223,7 +224,7 @@ In Jenkins, create the pipeline job for building and deploying your app.
223224
![Select "New Item"](media/jenkins-java-quickstart/jenkins-select-new-item.png)
224225

225226
1. Provide a name for your pipeline job, for example,
226-
"My-Java-Web-App-pipeline", and select **Pipeline**.
227+
"My-Java-Web-App", and select **Pipeline**.
227228
At the bottom, choose **OK**.
228229

229230
![Select "Pipeline"](media/jenkins-java-quickstart/jenkins-select-pipeline.png)

0 commit comments

Comments
 (0)