You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When a cluster gets a security update the current_version changes.
AWS calls that: Kafka security patching event
After being serviced by aws a terraform plan looks like this
Terraform detected the following changes made outside of Terraform since the
last "terraform apply" which may have affected this plan:
# aws_msk_cluster.default["enabled"] has changed~ resource "aws_msk_cluster""default" {
~ current_version = "K3FE7AD5N5R11" ->"KKEVKO7DR4RA"
[...]
Ignoring it should work, which is nice when you monitor state changes
lifecycle {
ignore_changes=[current_version]
}
The text was updated successfully, but these errors were encountered:
I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. If you have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further.
When a cluster gets a security update the
current_version
changes.AWS calls that:
Kafka security patching event
After being serviced by aws a terraform plan looks like this
Ignoring it should work, which is nice when you monitor state changes
The text was updated successfully, but these errors were encountered: