Open nreddipalle opened 4 months ago
Where exactly does the error occur? The message seems to be openssl related?
Error happening at last step
&"${ModulePath}\openssl-1.1.1l\x64\bin\openssl.exe" verify -attime $Attime -x509_strict -CAfile "$acmeStateDir\Certificates\ca.crt" -verbose "${certExportPath}.crt"
Is there a way to append RootCA and Intermediate CA directly during Issue Certificate/Export operation instead of doing it later.. I am still using 1.5.0 version of ACME.. wondering if any recent versions started supporting above?? Thanks for your response.
Please provide some information about your script:
We are generating LetsEncrypt Certs so far without issues using Azure Function and importing into Azure KeyVault. But the function stops working from June 2024 which I assume seems to be due to this https://letsencrypt.org/certificates/
This is our code:
We generate the cert:
I get this Error
error 20 at 0 depth lookup: unable to get local issuer certificate
I also tried with new Intermediate CERTS to no luck
(New-Object System.Net.WebClient).DownloadFile("https://letsencrypt.org/certs/isrgrootx1.pem", "$acmeStateDir\Certificates\isrgrootx1.pem") ## ROOT CA (New-Object System.Net.WebClient).DownloadFile("https://letsencrypt.org/certs/2024/r10.pem", "$acmeStateDir\Certificates\r10.pem") ## INTERMEDIATE CA
Am I missing anything? Please suggest. Thanks.,