Skip to content
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

[release-2.5] fix: remove snapshot groups (#1124) #1187

Merged
merged 1 commit into from
Sep 27, 2024
Merged
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
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
Loading