I ran into this issue when trying to create a lex bot: #619
Looking through the issue log, I suspect there are a lot of open issues that have the same problem:
1449
1635
1586
1451
My solution addresses two things:
WriteOnly fields should not be marked as "compute: true", otherwise TF will attempt to compare the CloudControl response (which doesn't have the property) to the DesiredState
WriteOnly (and other flags) need to cascade down to child properties, in my case, bot_locale was compute = false, but because some of the properties beneath were marked as compute = true, the error still exists
For anyone wanting to try this, I have published my fork with this fix:
I ran into this issue when trying to create a lex bot: #619
Looking through the issue log, I suspect there are a lot of open issues that have the same problem:
1449
1635
1586
1451
My solution addresses two things:
For anyone wanting to try this, I have published my fork with this fix:
https://registry.terraform.io/providers/parisholley/awscc/latest
As a note, I am curious if this fix maybe negates the need for this previous PR:
1737