Open
Description
Community Note
- 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
Terraform v1.5.6
on linux_amd64
+ provider registry.terraform.io/scaleway/scaleway v2.27.0
Affected Resource(s)
scaleway_object_bucket
Terraform Configuration Files
resource "scaleway_object_bucket" "bucket" {
name = "whatever"
tags = {
"key": "value"
}
}
Expected Behavior
The tags should be defined as for other resources:
tags = ["tag1", "tag2"]
Moreover, the value shouldn't be mangled in the UI — I should see my whole tags.
Actual Behavior
Tags are configured as a map for this specific resource.
Moreover, only the map's values are visible in the UI (in this example, only value
instead of some combination of key:value
).