Skip to content

Commit

Permalink
fix cluster resize
Browse files Browse the repository at this point in the history
  • Loading branch information
stroobl committed Feb 23, 2024
1 parent 1b0169e commit 5bdbf54
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -217,8 +217,11 @@ resource "aws_msk_cluster" "default" {

lifecycle {
ignore_changes = [
# Ignore changes to ebs_volume_size in favor of autoscaling policy
broker_node_group_info[0].storage_info[0].ebs_storage_info[0].volume_size,
# workaround for not being able to resize a cluster
# https://app.asana.com/0/1206364880660348/1206676435555704
# https://github.com/hashicorp/terraform-provider-aws/issues/26031
# https://github.com/cloudposse/terraform-aws-msk-apache-kafka-cluster/issues/99
broker_node_group_info[0].storage_info[0].ebs_storage_info[0].provisioned_throughput
]
}

Expand Down

0 comments on commit 5bdbf54

Please sign in to comment.