forked from home-assistant/addons
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for TransIP DNS Provider (home-assistant#1322)
* Add TransIP DNS Provider * Cleanup and fix SC errors. * Fix SC2004.
- Loading branch information
Showing
6 changed files
with
54 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -80,6 +80,8 @@ netcup_api_key: '' | |
netcup_api_password: '' | ||
gandi_api_key: '' | ||
gandi_sharing_id: '' | ||
transip_username: '' | ||
transip_api_key: '' | ||
``` | ||
## Example Configurations | ||
|
@@ -200,6 +202,29 @@ dns: | |
cloudflare_api_key: 0123456789abcdef0123456789abcdef01234 | ||
``` | ||
### TransIP | ||
You will need to generate an API key from the TransIP Control Panel at https://www.transip.nl/cp/account/api/. | ||
The propagation limit will be automatically raised to 240 seconds. | ||
Example configuration: | ||
```yaml | ||
email: [email protected] | ||
domains: | ||
- your.domain.tld | ||
certfile: fullchain.pem | ||
keyfile: privkey.pem | ||
challenge: dns | ||
dns: | ||
provider: dns-transip | ||
transip_username: transip-user | ||
transip_api_key: | | ||
-----BEGIN PRIVATE KEY----- | ||
MII..ABCDEFGHIJKLMNOPQRSTUVWXYZ | ||
AAAAAABCDEFGHIJKLMNOPQRSTUVWXYZ | ||
-----END PRIVATE KEY----- | ||
``` | ||
## Certificate files | ||
|
@@ -227,6 +252,7 @@ dns-route53 | |
dns-sakuracloud | ||
dns-netcup | ||
dns-gandi | ||
dns-transip | ||
``` | ||
|
||
## Support | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters