From b2f717a0350030da8204ece1634b6fa2c189e042 Mon Sep 17 00:00:00 2001 From: Pascal Vizeli Date: Wed, 5 Feb 2020 22:04:26 +0100 Subject: [PATCH] Fix json/yaml --- letsencrypt/README.md | 30 +++++++++++++----------------- 1 file changed, 13 insertions(+), 17 deletions(-) diff --git a/letsencrypt/README.md b/letsencrypt/README.md index 6c30293..85fb57e 100644 --- a/letsencrypt/README.md +++ b/letsencrypt/README.md @@ -143,23 +143,19 @@ You can find additional information in regards to the required permissions in th ### netcup dns challenge: -```json -{ - "email": "hello@home-assistant.io", - "domains": [ - "home-assistant.io" - ], - "certfile": "fullchain.pem", - "keyfile": "privkey.pem", - "challenge": "dns", - "dns": { - "provider": "dns-netcup", - "netcup_customer_id": "12345", - "netcup_api_key": "ABCDEFGHIJKLMNOPQRST", - "netcup_api_password": "1234567890ABCDEFGHIJK", - "netcup_propagation_seconds": "600" - } -} +```yaml +email: hello@home-assistant.io +domains: +- home-assistant.io +certfile: fullchain.pem +keyfile: privkey.pem +challenge: dns +dns: + provider: dns-netcup + netcup_customer_id: '12345' + netcup_api_key: ABCDEFGHIJKLMNOPQRST + netcup_api_password: 1234567890ABCDEFGHIJK + netcup_propagation_seconds: '600' ``` You can create the api key and api password in your netcup customer control panel. Here you'll also find you customer id.