A Terraform provider for Dokploy

Plugin-framework provider covering projects, environments, applications,
Compose stacks, managed databases, domains, mounts, ports, redirects,
basic auth, registries, SSH keys, certificates and backup destinations,
over Dokploy's tRPC-over-REST API.

The shim package exposes the provider to other Go modules, which is how
pulumi-dokploy bridges it.
This commit is contained in:
2026-08-09 12:17:26 +03:00
commit a6d8aa8b52
160 changed files with 24260 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "dokploy_application Data Source - dokploy"
subcategory: ""
description: |-
Look up an existing application by ID.
---
# dokploy_application (Data Source)
Look up an existing application by ID.
<!-- schema generated by tfplugindocs -->
## Schema
### Required
- `id` (String) Application identifier.
### Read-Only
- `app_name` (String) Docker service name.
- `application_status` (String) Current status.
- `build_type` (String) Build strategy.
- `created_at` (String) Creation timestamp.
- `description` (String) Application description.
- `environment_id` (String) Owning environment.
- `name` (String) Application name.
- `source_type` (String) Source of the code or image.

View File

@@ -0,0 +1,29 @@
---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "dokploy_environment Data Source - dokploy"
subcategory: ""
description: |-
Look up an existing environment by ID.
---
# dokploy_environment (Data Source)
Look up an existing environment by ID.
<!-- schema generated by tfplugindocs -->
## Schema
### Required
- `id` (String) Environment identifier.
### Read-Only
- `created_at` (String) Creation timestamp.
- `description` (String) Environment description.
- `env` (String) Environment-wide variables.
- `is_default` (Boolean) Whether this is the project's default environment.
- `name` (String) Environment name.
- `project_id` (String) Owning project.

View File

@@ -0,0 +1,39 @@
---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "dokploy_project Data Source - dokploy"
subcategory: ""
description: |-
Look up an existing Dokploy project by ID, including its environments.
---
# dokploy_project (Data Source)
Look up an existing Dokploy project by ID, including its environments.
<!-- schema generated by tfplugindocs -->
## Schema
### Required
- `id` (String) Project identifier.
### Read-Only
- `created_at` (String) Creation timestamp.
- `default_environment_id` (String) ID of the project's default environment.
- `description` (String) Project description.
- `env` (String) Project-wide environment variables.
- `environments` (List of Object) Every environment in the project. (see [below for nested schema](#nestedatt--environments))
- `name` (String) Project name.
- `organization_id` (String) Owning organization.
<a id="nestedatt--environments"></a>
### Nested Schema for `environments`
Read-Only:
- `id` (String)
- `is_default` (Boolean)
- `name` (String)

View File

@@ -0,0 +1,30 @@
---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "dokploy_projects Data Source - dokploy"
subcategory: ""
description: |-
List every Dokploy project the API token can see.
---
# dokploy_projects (Data Source)
List every Dokploy project the API token can see.
<!-- schema generated by tfplugindocs -->
## Schema
### Read-Only
- `projects` (List of Object) All visible projects. (see [below for nested schema](#nestedatt--projects))
<a id="nestedatt--projects"></a>
### Nested Schema for `projects`
Read-Only:
- `default_environment_id` (String)
- `description` (String)
- `id` (String)
- `name` (String)

View File

@@ -0,0 +1,30 @@
---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "dokploy_servers Data Source - dokploy"
subcategory: ""
description: |-
List the remote servers registered with Dokploy. Use a server's id as the server_id of an application, stack, or database to deploy it away from the Dokploy host.
---
# dokploy_servers (Data Source)
List the remote servers registered with Dokploy. Use a server's `id` as the `server_id` of an application, stack, or database to deploy it away from the Dokploy host.
<!-- schema generated by tfplugindocs -->
## Schema
### Read-Only
- `servers` (List of Object) All registered servers. (see [below for nested schema](#nestedatt--servers))
<a id="nestedatt--servers"></a>
### Nested Schema for `servers`
Read-Only:
- `id` (String)
- `ip_address` (String)
- `name` (String)
- `server_status` (String)