Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add domain_dnssec and domain_nameserver docs #78

Merged
merged 1 commit into from
Jan 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions docs/resources/domain_dnssec.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Domain DNSSec Resource

Allows to set non default (ie. non TransIP provide) DNS Sec records.
Use together with `domain_nameservers` to safely use another DNS Provider (ie
Cloudflare, AWS Route53, ....)

## Argument Reference

* `domain` - (Required) The domain, including the tld
* `dnssec` - (Required) List of dnssec entries associated with domain

### DNSSec object

* `key_tag` - (Required) A 5-digit key of the Zonesigner
* `flags` - (Required) The signing key number, either 256 (Zone Signing Key) or 257 (Key Signing Key)
* `algorithm` - (Required) The algorithm type that is used, see: https://www.transip.nl/vragen/461-domeinnaam-nameservers-gebruikt-beveiligen-dnssec/ for the possible options.
* `public_key` - (Required) The public key

## Attribute Reference

* `id` - n/a
21 changes: 21 additions & 0 deletions docs/resources/domian_nameservers.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Domain Nameservers Resource

Allows to set non default (ie. non TransIP provide) nameservers.

Use together with `domain_dnssec` to safely use another DNS Provider (ie
Cloudflare, AWS Route53, ....)

## Argument Reference

* `domain` - (Required) The domain, including the tld
* `nameserver` - (Required) List of nameservers associated with domain

### Nameserver object

* `hostname` - (Required) The hostname of this nameserver
* `ipv4` - (Optional) ipv4 glue record for this nameserver
* `ipv6` - (Optional) ipv6 glue record for this nameserver

## Attribute Reference

* `id` - n/a
Loading