Open throwaway8787 opened 4 years ago
We're also hitting this issue, this seems to happen when applying a plan where an aws_msk_configuration
has already been created previously
👍 We are also seeing this.
As are we. I created this separate issue for the general updating issue: #15795
For me the first attempt always fail. But usually the second or the third attempts are successful.
We are also observing the same issue
we can also reproduce it
Same here, using Terraform ~>0.14.0
and AWS Provider version ~>3.0
. Though it seems that the 2nd attempt is fine.
Same here, using Terraform
~>0.14.0
and AWS Provider version~>3.0
. Though it seems that the 2nd attempt is fine.
We also saw that a 2nd attempt ran without errors.
Hey folks, here, using Terraform ~>1.4.0 and AWS Provider version ~>4.58.0 have same problem with first attempt to change msk configuration, any subsequent attempt finished in successfully state.
Terraform v1.5.5 and AWS Provider version 5.5.0 still with this issue.
Terraform v1.6.6 and AWS Provider version 5.46.0 and still has this issue.
For anyone who is experiencing this issue. On my side this fixed the issue.
Just add tonumber() on configuration revision and it should solve the problem.
configuration_info {
arn = aws_msk_configuration.kafka_configurations.arn
revision = tonumber(aws_msk_configuration.kafka_configurations.latest_revision)
}