Skip to content

Commit

Permalink
fix: remove snapshot groups (#1124) (#1186)
Browse files Browse the repository at this point in the history
Co-authored-by: Faiq <[email protected]>
  • Loading branch information
dlipovetsky and faiq authored Sep 27, 2024
1 parent 62e0b9c commit 5bc0a63
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkg/packer/manifests/aws/packer.pkr.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -151,8 +151,8 @@ variable "skip_profile_validation" {
}

variable "snapshot_groups" {
type = string
default = "all"
type = list(string)
default = []
}

variable "snapshot_users" {
Expand Down Expand Up @@ -382,7 +382,7 @@ source "amazon-ebs" "kib_image" {
secret_key = var.aws_secret_key
security_group_id = var.security_group_id
skip_profile_validation = var.skip_profile_validation
snapshot_groups = split(",", var.snapshot_groups)
snapshot_groups = var.snapshot_groups
snapshot_tags = {
ami_name = local.ami_name
}
Expand Down

0 comments on commit 5bc0a63

Please sign in to comment.