Skip to content
This repository has been archived by the owner on Jan 29, 2025. It is now read-only.

Commit

Permalink
chore(docs): recompile docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Luiggi33 committed Aug 4, 2024
1 parent a4c9ab6 commit 8d4ae60
Show file tree
Hide file tree
Showing 3 changed files with 131 additions and 0 deletions.
41 changes: 41 additions & 0 deletions docs/data-sources/node.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "pterodactyl_node Data Source - pterodactyl"
subcategory: ""
description: |-
The Pterodactyl node data source allows Terraform to read a nodes data from the Pterodactyl Panel API.
---

# pterodactyl_node (Data Source)

The Pterodactyl node data source allows Terraform to read a nodes data from the Pterodactyl Panel API.



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

### Optional

- `id` (Number) The ID of the node.
- `name` (String) The name of the node.
- `uuid` (String) The UUID of the node.

### Read-Only

- `behind_proxy` (Boolean) The behind proxy status of the node.
- `created_at` (String) The creation date of the node.
- `daemon_listen` (Number) The daemon listen of the node.
- `daemon_sftp` (Number) The daemon SFTP of the node.
- `description` (String) The description of the node.
- `disk` (Number) The disk of the node.
- `disk_overallocate` (Number) The disk overallocate of the node.
- `fqdn` (String) The FQDN of the node.
- `location_id` (Number) The location ID of the node.
- `maintenance_mode` (Boolean) The maintenance mode status of the node.
- `memory` (Number) The memory of the node.
- `memory_overallocate` (Number) The memory overallocate of the node.
- `public` (Boolean) The public status of the node.
- `scheme` (String) The scheme of the node.
- `updated_at` (String) The last update date of the node.
- `upload_size` (Number) The upload size of the node.
49 changes: 49 additions & 0 deletions docs/data-sources/nodes.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "pterodactyl_nodes Data Source - pterodactyl"
subcategory: ""
description: |-
The Pterodactyl nodes data source allows Terraform to read nodes from the Pterodactyl API.
---

# pterodactyl_nodes (Data Source)

The Pterodactyl nodes data source allows Terraform to read nodes from the Pterodactyl API.



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

### Optional

- `location_id` (Number) The ID of the location.

### Read-Only

- `nodes` (Attributes List) The list of nodes. (see [below for nested schema](#nestedatt--nodes))

<a id="nestedatt--nodes"></a>
### Nested Schema for `nodes`

Read-Only:

- `behind_proxy` (Boolean) The behind proxy status of the node.
- `created_at` (String) The creation date of the node.
- `daemon_listen` (Number) The daemon listen of the node.
- `daemon_sftp` (Number) The daemon SFTP of the node.
- `description` (String) The description of the node.
- `disk` (Number) The disk of the node.
- `disk_overallocate` (Number) The disk overallocate of the node.
- `fqdn` (String) The FQDN of the node.
- `id` (Number) The ID of the node.
- `location_id` (Number) The location ID of the node.
- `maintenance_mode` (Boolean) The maintenance mode status of the node.
- `memory` (Number) The memory of the node.
- `memory_overallocate` (Number) The memory overallocate of the node.
- `name` (String) The name of the node.
- `public` (Boolean) The public status of the node.
- `scheme` (String) The scheme of the node.
- `updated_at` (String) The last update date of the node.
- `upload_size` (Number) The upload size of the node.
- `uuid` (String) The UUID of the node.
41 changes: 41 additions & 0 deletions docs/resources/node.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "pterodactyl_node Resource - pterodactyl"
subcategory: ""
description: |-
The Pterodactyl node resource allows Terraform to manage nodes in the Pterodactyl Panel API.
---

# pterodactyl_node (Resource)

The Pterodactyl node resource allows Terraform to manage nodes in the Pterodactyl Panel API.



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

### Required

- `behind_proxy` (Boolean) The behind proxy status of the node.
- `daemon_listen` (Number) The daemon listen of the node.
- `daemon_sftp` (Number) The daemon SFTP of the node.
- `description` (String) The description of the node.
- `disk` (Number) The disk of the node.
- `disk_overallocate` (Number) The disk overallocate of the node.
- `fqdn` (String) The FQDN of the node.
- `location_id` (Number) The location ID of the node.
- `maintenance_mode` (Boolean) The maintenance mode status of the node.
- `memory` (Number) The memory of the node.
- `memory_overallocate` (Number) The memory overallocate of the node.
- `name` (String) The name of the node.
- `public` (Boolean) The public status of the node.
- `scheme` (String) The scheme of the node.
- `upload_size` (Number) The upload size of the node.

### Read-Only

- `created_at` (String) The creation date of the node.
- `id` (Number) The ID of the node.
- `updated_at` (String) The last update date of the node.
- `uuid` (String) The UUID of the node.

0 comments on commit 8d4ae60

Please sign in to comment.