Please vote on this issue by adding a 👍 reaction to the original issue to help the community and maintainers prioritize this request
Please do not leave "+1" or other comments that do not add relevant new information or questions, they generate extra noise for issue followers and do not help prioritize the request
If you are interested in working on this issue or have submitted a pull request, please leave a comment
Terraform Version
1.8.3
Affected Resource(s)
scaleway_object_bucket
Terraform Configuration Files
resource "scaleway_object_bucket" "img_s3_bucket" {
name = "images-${terraform.workspace}"
acl = "private"
region = "nl-ams"
}
I already have a bucket. I run terraform plan. I want the plan to tell me no resources have to be changed.
Actual Behavior
The plan fails with above message. Root cause could be a request against https://images-stage.s3.nl-ams.scw.cloud/?lifecycle= which in turn produces a NoSuchLifecycleConfiguration error. See more detail in gist.
We are currently working on an issue with the debug flag and object. Could you please provide the error message you're seeing without the debug flag enabled?
Community Note
Terraform Version
1.8.3
Affected Resource(s)
Terraform Configuration Files
Debug Output
https://gist.github.com/mrohlof-protofy/64a3b9571f39564304274e5894558f38
Expected Behavior
I already have a bucket. I run terraform plan. I want the plan to tell me no resources have to be changed.
Actual Behavior
The plan fails with above message. Root cause could be a request against
https://images-stage.s3.nl-ams.scw.cloud/?lifecycle=
which in turn produces aNoSuchLifecycleConfiguration
error. See more detail in gist.