Files
terraform-provider-dokploy/examples/complete/variables.tf
Max Vojtkov a6d8aa8b52 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.
2026-08-09 12:17:26 +03:00

15 lines
421 B
HCL

variable "github_provider_id" {
description = <<-DESC
ID of the GitHub connection configured in Dokploy under
Settings -> Git Providers. Find it with:
curl -H "x-api-key: $DOKPLOY_API_KEY" "$DOKPLOY_HOST/api/github.githubProviders"
DESC
type = string
}
variable "admin_password" {
description = "Basic auth password for the staging admin tool."
type = string
sensitive = true
}