Bridge terraform-provider-dokploy into a Pulumi provider

18 resources and 5 data sources mapped into the dokploy:index module, with
SDKs generated for TypeScript, Python, Go and .NET.
This commit is contained in:
2026-08-08 15:28:16 +03:00
commit bb3c15135b
175 changed files with 61774 additions and 0 deletions

29
.gitignore vendored Normal file
View File

@@ -0,0 +1,29 @@
# Provider and codegen binaries
/bin/
# The generated SDKs under sdk/ ARE committed — Go module consumers fetch them
# straight from this repo. Only their build output is ignored.
/sdk/nodejs/bin/
/sdk/nodejs/node_modules/
/sdk/dotnet/bin/
/sdk/dotnet/obj/
/sdk/python/build/
/sdk/python/dist/
/sdk/python/*.egg-info/
__pycache__/
*.tsbuildinfo
# Pulumi stack state from examples
Pulumi.*.yaml
!examples/**/Pulumi.yaml
.pulumi/
# Go
vendor/
*.test
coverage.out
# Example dependencies
/examples/**/node_modules/
/examples/**/package-lock.json
/examples/**/venv/