From d6051f6ec054ca27e168650f864b0fb031a1a0dd Mon Sep 17 00:00:00 2001 From: Mischa Kaufmann <95759138+tssmk@users.noreply.github.com> Date: Mon, 2 May 2022 15:52:58 +0200 Subject: [PATCH] Replaced client secret with a new string. Before was a id used as place holder which was confusing. --- How-to-use-Azure-DNS.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/How-to-use-Azure-DNS.md b/How-to-use-Azure-DNS.md index be6694e..f55c9ca 100644 --- a/How-to-use-Azure-DNS.md +++ b/How-to-use-Azure-DNS.md @@ -67,7 +67,7 @@ az ad sp create-for-rbac --name "AcmeDnsValidator" --role "DNS Zone Contributor "appId": "3b5033b5-7a66-43a5-b3b9-a36b9e7c25ed", "displayName": "AcmeDnsValidator", "name": "http://AcmeDnsValidator", - "password": "1b0224ef-34d4-5af9-110f-77f527d561bd", + "password": "e.L8Q~4jGhWHheCKjdRzw3gyBBwOmrTyYF9NYbxs", "tenant": "11111111-2222-3333-4444-555555555555" } ``` @@ -136,7 +136,7 @@ az ad sp create-for-rbac --name "AcmeDnsValidator" --role "DNS TXT Contributor" export AZUREDNS_SUBSCRIPTIONID="12345678-9abc-def0-1234-567890abcdef" export AZUREDNS_TENANTID="11111111-2222-3333-4444-555555555555" export AZUREDNS_APPID="3b5033b5-7a66-43a5-b3b9-a36b9e7c25ed" # appid of the service principal -export AZUREDNS_CLIENTSECRET="1b0224ef-34d4-5af9-110f-77f527d561bd" # password from creating the service principal +export AZUREDNS_CLIENTSECRET="e.L8Q~4jGhWHheCKjdRzw3gyBBwOmrTyYF9NYbxs" # password from creating the service principal acme.sh --issue --dns dns_azure -d example.com -d www.example.com ```