From 827604025b3aa3aa493c652fa08c6e6142a2c678 Mon Sep 17 00:00:00 2001 From: Sean MacKay Date: Mon, 11 Apr 2022 11:15:44 -0300 Subject: [PATCH] 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 --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3ba2f119..19349dc6 100644 --- a/README.md +++ b/README.md @@ -210,10 +210,10 @@ Follow the steps to configure Azure Service Principal with a secret: { "clientId": "", - "clientSecret": "", + "clientSecret": "", "subscriptionId": "", "tenantId": "", - "resourceManagerEndpointUrl": + "resourceManagerEndpointUrl": "" (...) }