-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: rebuild them, include dnssec resource
- Loading branch information
1 parent
bff94a5
commit 8cf268b
Showing
5 changed files
with
48 additions
and
10 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 |
---|---|---|
|
@@ -12,7 +12,7 @@ Supported features: | |
|
||
## Usage | ||
|
||
```HCL | ||
```hcl | ||
# Set up the provider | ||
terraform { | ||
required_providers { | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "namedotcom_dnssec Resource - terraform-provider-namedotcom" | ||
subcategory: "" | ||
description: |- | ||
--- | ||
|
||
# namedotcom_dnssec (Resource) | ||
|
||
## Example usage | ||
|
||
```hcl | ||
resource "namedotcom_dnssec" "this" { | ||
domain_name = var.domain | ||
key_tag = var.dnssec.key_tag | ||
algorithm = 13 | ||
digest_type = 2 | ||
digest = "6B3ED3311DE85004BF6DD325BA82340BC89B40B86D4055780F3BE4390B81B59A" | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- `algorithm` (Number) Algorithm is an integer identifying the algorithm used for signing. | ||
- `digest` (String) Digest is a digest of the DNSKEY RR that is registered with the registry. | ||
- `digest_type` (Number) DigestType is an integer identifying the algorithm used to create the digest. | ||
- `domain_name` (String) DomainName is the zone that the DNSSEC belongs to | ||
- `key_tag` (Number) KeyTag contains the key tag value of the DNSKEY RR that validates this signature. | ||
|
||
### Read-Only | ||
|
||
- `id` (String) The ID of this resource. |
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