Skip to content

feat: include terraform modules for dynamic parameters #17541

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fixup! chore: db column for some tfstate used in dynamic params
  • Loading branch information
Emyrk committed Apr 23, 2025
commit 8ef603a35c605e6df873f549f2f3d0b0c55a7bb3
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
ALTER TABLE template_version_terraform_values
DROP COLUMN IF EXISTS modules;
4 changes: 4 additions & 0 deletions coderd/database/migrations/000318_template_module_data.up.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
ALTER TABLE template_version_terraform_values
ADD COLUMN IF NOT EXISTS tfstate bytea DEFAULT null;

COMMENT ON COLUMN template_version_terraform_values.tfstate IS 'Tarball of the relevant tfstate directory files for dynamic parameters. Not all files are included.'
Loading