fix: persist terraform modules during template import (#17665)

This commit is contained in:
ケイラ
2025-05-08 16:13:46 -06:00
committed by GitHub
parent 9a052e2a4c
commit ae3d90b057
27 changed files with 587 additions and 229 deletions

View File

@ -11,11 +11,13 @@ INSERT INTO
template_version_terraform_values (
template_version_id,
cached_plan,
cached_module_files,
updated_at
)
VALUES
(
(select id from template_versions where job_id = @job_id),
@cached_plan,
@cached_module_files,
@updated_at
);