Update ClientSecret in the example to not call itself a GUID (#208)

* Update ClientSecret in the example to not call itself a GUID

If manually crafting or verifying a Service Principal credential JSON object, it is helpful to know that only the `clientId` is formatted as a GUID, and the `clientSecret` is just an alphanumeric string.

* Update README.md

Co-authored-by: Balaga Gayatri <balaga-gayatri@github.com>
This commit is contained in:
Sean MacKay 2022-04-11 11:15:44 -03:00 committed by GitHub
commit 827604025b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -210,10 +210,10 @@ Follow the steps to configure Azure Service Principal with a secret:
{
"clientId": "<GUID>",
"clientSecret": "<GUID>",
"clientSecret": "<STRING>",
"subscriptionId": "<GUID>",
"tenantId": "<GUID>",
"resourceManagerEndpointUrl": <URL>
"resourceManagerEndpointUrl": "<URL>"
(...)
}