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.
20 lines
584 B
HCL
20 lines
584 B
HCL
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
|
|
}
|