Replaced client secret with a new string. Before was a id used as place holder which was confusing.

master
Mischa Kaufmann 2022-05-02 15:52:58 +02:00
parent 052eb56e81
commit d6051f6ec0
1 changed files with 2 additions and 2 deletions

@ -67,7 +67,7 @@ az ad sp create-for-rbac --name "AcmeDnsValidator" --role "DNS Zone Contributor
"appId": "3b5033b5-7a66-43a5-b3b9-a36b9e7c25ed", "appId": "3b5033b5-7a66-43a5-b3b9-a36b9e7c25ed",
"displayName": "AcmeDnsValidator", "displayName": "AcmeDnsValidator",
"name": "http://AcmeDnsValidator", "name": "http://AcmeDnsValidator",
"password": "1b0224ef-34d4-5af9-110f-77f527d561bd", "password": "e.L8Q~4jGhWHheCKjdRzw3gyBBwOmrTyYF9NYbxs",
"tenant": "11111111-2222-3333-4444-555555555555" "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_SUBSCRIPTIONID="12345678-9abc-def0-1234-567890abcdef"
export AZUREDNS_TENANTID="11111111-2222-3333-4444-555555555555" export AZUREDNS_TENANTID="11111111-2222-3333-4444-555555555555"
export AZUREDNS_APPID="3b5033b5-7a66-43a5-b3b9-a36b9e7c25ed" # appid of the service principal 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 acme.sh --issue --dns dns_azure -d example.com -d www.example.com
``` ```