-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Open
Labels
Milestone
Description
Description
In the Karpenter module, setting sqs_managed_sse_enabled = false
still creates SQS with SSE enabled.
This might be due to the following line which sets the underlying aws_sqs_queue
resource with sqs_managed_sse_enabled = null
.
- ✋ I have searched the open/closed issues and my issue is not listed.
⚠️ Note
Before you submit an issue, please perform the following first:
- Remove the local
.terraform
directory (! ONLY if state is stored remotely, which hopefully you are following that best practice!):rm -rf .terraform/
- Re-initialize the project root to pull down modules:
terraform init
- Re-attempt your terraform plan or apply and check if the issue still persists
Versions
-
Module version [Required]:
-
Terraform version:
- Provider version(s):
Reproduction Code [Required]
module "karpenter" {
source = "terraform-aws-modules/eks/aws//modules/karpenter"
namespace = "karpenter"
# ...
queue_managed_sse_enabled = false
}
Steps to reproduce the behavior: