Hi, I would like to setup HA with SSL using the Let's encrypt add-on. My DNS provider is transip which convenietnly is supported. However, i think transip has changed its API - current description: https://api.transip.nl/rest/docs.html and tried to find in the code on githun whether I could find out myself. But I couldn't. I have created a keypair with Transip and stored the private key in RSA format as .pem on my HA in /ssl/key.pem. I also created an access token and configured Let's Encrypt:
email: <my e-mail>
domains:
- <my domain>
certfile: fullchain.pem
keyfile: privkey.pem
challenge: dns
dns:
provider: dns-transip
transip_account_name: <my username at transip>
transip_private_key_path: /ssl/key.pem
transip_api_key: <access token>
when starting Let's encrypt I get: cont-init: info: running /etc/cont-init.d/file-structure.sh
Could not find private key from <stdin>
What am I doing wrong or is it really that transip has changed its api and the add-on no longer works?