hashicorp / terraform-provider-aws

The AWS Provider enables Terraform to manage AWS resources.
https://registry.terraform.io/providers/hashicorp/aws
Mozilla Public License 2.0
9.83k stars 9.17k forks source link

[Enhancement]: aws_workspaces_bundle support protocol filtering #33445

Open ruckc opened 1 year ago

ruckc commented 1 year ago

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

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"
}

References

https://docs.aws.amazon.com/workspaces/latest/adminguide/amazon-workspaces-protocols.html

Would you like to implement a fix?

None

github-actions[bot] commented 1 year ago

Community Note

Voting for Prioritization

Volunteering to Work on This Issue

mohsin-integratech commented 1 year ago

Facing same issue

ceafin commented 6 months ago

Same requirements here as well. For what it's worth.