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_servicecatalog_tag_option data source #33063

Open MickSheppardWB opened 1 year ago

MickSheppardWB commented 1 year ago

Description

AWS service catalog tag options are unique key, value pairs. In order to be able to effectively use these across multiple workspaces it is necessary to be able to lookup the associated id of the tag option to assign it to a product or portfolio. This is not possible at present as there is no data source associated with the service catalog tag options.

The enhancement is to implement this.

The data source would return:

Affected Resource(s) and/or Data Source(s)

data aws_servicecatalog_tag_option

Potential Terraform Configuration

data "aws_servicecatalog_tag_option" "example" {
  key   = "tag_key"
  value = "tag_value"
}

References

No response

Would you like to implement a fix?

No

github-actions[bot] commented 1 year ago

Community Note

Voting for Prioritization

Volunteering to Work on This Issue

ahsan-n commented 1 year ago

Hi I can pick this up

Kiyo510 commented 10 months ago

Hi 👋 , @justinretzolk. As far as I have seen in past PRs, this issue has not yet been implemented. So, I work on this ticket.