Error 400 - Identity not found #1684
-
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Managed to figure it out... The original method I was using, was putting the environment variables into the current users environment, and then running the actual LEGO command as sudo meant it lost those environment variables. |
Beta Was this translation helpful? Give feedback.
Managed to figure it out...
This is the command I used in the end that works.:
sudo AZURE_CLIENT_ID=9110165b-2382-4707-8768-31f5632XXXXX AZURE_CLIENT_SECRET=mSS8Q~qaWTJajPKy_Mr5cOe584zD4utlvsQXXXXX AZURE_RESOURCE_GROUP=fbc-wordpress AZURE_ENVIRONMENT=public AZURE_SUBSCRIPTION_ID=4978dc52-7bc1-4ff1-8067-9718740XXXXX AZURE_TENANT_ID=2527f606-f20a-4f39-aee8-953ed0fXXXXX /opt/bitnami/letsencrypt/lego --email="it.support@fbc.nz" --dns azure --domains="franklinbaptist.org.nz" --domains="www.franklinbaptist.org.nz" --path="/opt/bitnami/letsencrypt" run
The original method I was using, was putting the environment variables into the current users environment, and then running the actual LEGO comma…