Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 4 additions & 0 deletions ctf/deploy.py
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,10 @@ def deploy(
)

track.already_deployed = True
remove_tracks_from_terraform_modules(
{track}, remote=remote, production=production
)
add_tracks_to_terraform_modules({track})

if not production:
incus_list = json.loads(
Expand Down
2 changes: 1 addition & 1 deletion ctf/templates/init/.deploy/common/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ variable "build_container" {
type = bool
}

variable "post_deploy_phase" {
variable "already_deployed" {
default = false
type = bool
}
Expand Down
Loading