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:
19
examples/complete/outputs.tf
Normal file
19
examples/complete/outputs.tf
Normal file
@@ -0,0 +1,19 @@
|
||||
output "project_id" {
|
||||
description = "Identifier of the shop project."
|
||||
value = dokploy_project.shop.id
|
||||
}
|
||||
|
||||
output "production_environment_id" {
|
||||
description = "Default production environment created alongside the project."
|
||||
value = dokploy_project.shop.default_environment_id
|
||||
}
|
||||
|
||||
output "storefront_urls" {
|
||||
description = "Public URLs the storefront answers on."
|
||||
value = module.storefront.urls
|
||||
}
|
||||
|
||||
output "postgres_host" {
|
||||
description = "In-cluster hostname of the database, for other services to connect to."
|
||||
value = dokploy_postgres.shop.app_name
|
||||
}
|
||||
Reference in New Issue
Block a user