Skip to content

Commit

Permalink
feat: additional globs track
Browse files Browse the repository at this point in the history
  • Loading branch information
oycyc committed Dec 31, 2024
1 parent c20a3a9 commit 6fc4652
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
1 change: 1 addition & 0 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -283,6 +283,7 @@ resource "spacelift_stack" "default" {
for_each = local.stacks

administrative = coalesce(try(local.stack_configs[each.key].administrative, null), var.administrative)
additional_project_globs = try(local.stack_configs[each.key].additional_project_globs, var.additional_project_globs)
after_apply = compact(concat(try(local.stack_configs[each.key].after_apply, []), var.after_apply))
after_destroy = compact(concat(try(local.stack_configs[each.key].after_destroy, []), var.after_destroy))
after_init = compact(concat(try(local.stack_configs[each.key].after_init, []), var.after_init))
Expand Down
6 changes: 0 additions & 6 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,6 @@ variable "repository" {
description = "The name of your infrastructure repo"
}

variable "runner_image" {
type = string
description = "URL of the Docker image used to process Runs. Defaults to `null` which is Spacelift's standard (Alpine) runner image."
default = "null"
}

variable "branch" {
type = string
description = "Specify which branch to use within the infrastructure repository."
Expand Down

0 comments on commit 6fc4652

Please sign in to comment.