Please add the ability to support protocol filtering to the data provider for aws_workspaces_bundle. We want to lookup bundle ID's using the data provider, but we require the WSP client protocol.****
Affected Resource(s) and/or Data Source(s)
aws_workspaces_bundle
Potential Terraform Configuration
data "aws_workspaces_bundle" "wsp" {
owner = "AMAZON"
name = "Value with Amazon Linux 2"
protocol = "WSP"
}
data "aws_workspaces_bundle" "pcoip" {
owner = "AMAZON"
name = "Value with Amazon Linux 2"
protocol = "PCOIP"
}
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.
Description
Please add the ability to support
protocol
filtering to the data provider for aws_workspaces_bundle. We want to lookup bundle ID's using the data provider, but we require the WSP client protocol.****Affected Resource(s) and/or Data Source(s)
Potential Terraform Configuration
References
https://docs.aws.amazon.com/workspaces/latest/adminguide/amazon-workspaces-protocols.html
Would you like to implement a fix?
None