diff --git a/letsencrypt/DOCS.md b/letsencrypt/DOCS.md index 02ae30d4c09..9e70d6d6f43 100644 --- a/letsencrypt/DOCS.md +++ b/letsencrypt/DOCS.md @@ -146,6 +146,7 @@ gandi_token: '' gandi_sharing_id: '' transip_username: '' transip_api_key: '' +transip_global_key: '' inwx_username: '' inwx_password: '' inwx_shared_secret: '' @@ -646,6 +647,8 @@ Example configuration: You will need to generate an API key from the TransIP Control Panel at https://www.transip.nl/cp/account/api/. +If you can't use IP whitelisting, use the `transip_global_key` and set it to yes. (https://github.com/hsmade/certbot-dns-transip/blob/master/USAGE.rst#ip-whitelistsing) + The propagation limit will be automatically raised to 240 seconds. Example configuration: diff --git a/letsencrypt/rootfs/etc/cont-init.d/file-structure.sh b/letsencrypt/rootfs/etc/cont-init.d/file-structure.sh index 42c5c1390dc..12df823e7e8 100755 --- a/letsencrypt/rootfs/etc/cont-init.d/file-structure.sh +++ b/letsencrypt/rootfs/etc/cont-init.d/file-structure.sh @@ -61,6 +61,7 @@ echo -e "dns_desec_token = $(bashio::config 'dns.desec_token')\n" \ "dns_sakuracloud_api_token = $(bashio::config 'dns.sakuracloud_api_token')\n" \ "dns_sakuracloud_api_secret = $(bashio::config 'dns.sakuracloud_api_secret')\n" \ "dns_transip_username = $(bashio::config 'dns.transip_username')\n" \ + "dns_transip_global_key = $(bashio::config 'dns.transip_global_key')\n" \ "dns_transip_key_file = /data/transip-rsa.key\n" \ "dns_inwx_url = https://api.domrobot.com/xmlrpc/\n" \ "dns_inwx_username = $(bashio::config 'dns.inwx_username')\n" \