Skip to content

Commit

Permalink
fix docs
Browse files Browse the repository at this point in the history
Signed-off-by: Aleksey Sviridkin <[email protected]>
  • Loading branch information
Aleksey Sviridkin committed Jul 9, 2022
1 parent 09699c1 commit 81dcd2d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 9 deletions.
6 changes: 2 additions & 4 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ This provider allows you to manage your [namedotcom](https://www.namedotcom.com/

Currently, this provider only supports the following resources:

- [namedotcom_domain_nameservers](../../docs/resources/domain_nameservers.md)
- [namedotcom_record](../../docs/resources/record.md)
- [namedotcom_domain_nameservers](resources/domain_nameservers.md)
- [namedotcom_record](resources/record.md)

## Example Usage

Expand All @@ -36,8 +36,6 @@ provider "namedotcom" {
}
```



<!-- schema generated by tfplugindocs -->
## Schema

Expand Down
2 changes: 0 additions & 2 deletions docs/resources/domain_nameservers.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,5 +48,3 @@ resource "namedotcom_domain_nameservers" "example_com" {
### Read-Only

- `id` (String) The ID of this resource.


3 changes: 1 addition & 2 deletions docs/resources/record.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,7 @@ resource "namedotcom_record" "domain-me" {
host = each.key
answer = each.value
}
```

<!-- schema generated by tfplugindocs -->
## Schema
Expand Down
3 changes: 2 additions & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,6 @@ func main() {
ProviderFunc: func() terraform.ResourceProvider {
return namedotcom.Provider()
},
})
},
)
}

0 comments on commit 81dcd2d

Please sign in to comment.