Skip to content

Commit

Permalink
Added lifecycle to ignore null changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Mitrofanov authored Jan 16, 2025
1 parent 25e2920 commit aa809cd
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,11 @@ resource "aws_msk_cluster" "this" {
}
}
}

lifecycle {
ignore_changes = [
# Ignore changes to provisioned_throughput to avoid errors
broker_node_group_info[0].storage_info[0].ebs_storage_info[0].provisioned_throughput,
]
}
tags = var.tags
}

0 comments on commit aa809cd

Please sign in to comment.