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
Copy file name to clipboardExpand all lines: articles/jenkins/tutorial-jenkins-deploy-web-app-azure-app-service.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -168,9 +168,9 @@ Here's the output generated by the **`create-for-rbac`** command:
168
168
169
169
```json
170
170
{
171
-
"appId": "yourClient-ID", // A GUID such as AAAAAAAA-AAAA-AAAA-AAAA-AAAAAAAAAAAA
172
-
"displayName": "yourServicePrincipalName", // A user-friendly name for your service principal
173
-
"name": "http://yourServicePrincipalName",
171
+
"appId": "yourAzureServicePrincipal-ID", // A GUID such as AAAAAAAA-AAAA-AAAA-AAAA-AAAAAAAAAAAA
172
+
"displayName": "yourAzureServicePrincipalName", // A user-friendly name for your Azure service principal
173
+
"name": "http://yourAzureServicePrincipalName",
174
174
"password": "yourSecurePassword",
175
175
"tenant": "yourAzureActiveDirectoryTenant-ID"// A GUID such as BBBBBBBB-BBBB-BBBB-BBBB-BBBBBBBBBBBB
176
176
}
@@ -200,11 +200,11 @@ and elsewhere to these credential properties:
200
200
| Property | Value | Description |
201
201
|----------|-------|-------------|
202
202
|**Kind**| Azure Service Principal | The type of credential you're using |
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**| <*yourClient-ID*> | The `appId` GUID previously generated for your Azure service principal |
203
+
|**Subscription ID**| <*yourAzureSubscription-ID*> | The GUID value 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**| <*yourAzureServicePrincipal-ID*> | The `appId` GUID value for previously generated for your Azure service principal |
205
205
|**Client Secret**| <*yourSecurePassword*> | The `password` value or "secret" you provided for your Azure service principal |
206
-
|**Tenant ID**| <*yourAzureActiveDirectoryTenant-ID*> | The `tenant` GUID for your Azure Active Directory tenant |
207
-
|**ID**| <*yourServicePrincipalName*> | The `displayName` value for your Azure service principal |
206
+
|**Tenant ID**| <*yourAzureActiveDirectoryTenant-ID*> | The `tenant` GUID value for your Azure Active Directory tenant |
207
+
|**ID**| <*yourAzureServicePrincipalName*> | The `displayName` value for your Azure service principal |
208
208
||||
209
209
210
210
For example:
@@ -240,7 +240,7 @@ can deploy to Azure without using your own credentials.
240
240
For example, use the service principal ID you created earlier.
0 commit comments