terraform-provider-aws
terraform-provider-aws copied to clipboard
[Enhancement]: Enable special resource tag for AWS workspaces
Description
I'd like to be able to retroactively add tags to AWS workspaces. This is important because some tags are not put in place during the creation of the workspaces outside of TF.
Affected Resource(s) and/or Data Source(s)
As mentioned above the external creation process does not include all necessary tags, and we need a mechanism to add tags to aws workspaces.
Potential Terraform Configuration
resources "aws_workspaces_tag" "example" {
workspaceI_id = data.aws_workspaces_workspace.id
workspaces_tags = {
"Key1" = "Value1"
"Key2" = "Value2"
... = ...
"keyN" = "ValueN"
}
}
References
No response
Would you like to implement a fix?
No
Community Note
Voting for Prioritization
- Please vote on this issue by adding a 👍 reaction to the original post to help the community and maintainers prioritize this request.
- Please see our prioritization guide for information on how we prioritize.
- 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.
Volunteering to Work on This Issue
- If you are interested in working on this issue, please leave a comment.
- If this would be your first contribution, please review the contribution guide.