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.85k stars 9.2k forks source link

[Enhancement]: Add tags support for aws_route53profiles_profile and aws_route53profiles_association #40241

Open ineednewpajamas opened 1 day ago

ineednewpajamas commented 1 day ago

Description

Add support for the tags argument for aws_route53profiles_profile and aws_route53profiles_association. Tags are supported in awscc and the sdk.

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

aws_route53profiles_profile aws_route53profiles_association

Potential Terraform Configuration

resource "aws_route53profiles_profile" "dev" {
  name = "example"

  tags = {
    Environment = "dev"
  }
}

References

https://registry.terraform.io/providers/hashicorp/awscc/latest/docs/resources/route53profiles_profile https://pkg.go.dev/github.com/aws/aws-sdk-go-v2/service/route53profiles#CreateProfileInput

Would you like to implement a fix?

No

github-actions[bot] commented 1 day ago

Community Note

Voting for Prioritization

Volunteering to Work on This Issue

jeremychauvet commented 23 hours ago

Hello @ineednewpajamas 👋🏼 Reviewing resource parameters, I've seen there's a tags_all attribute available. Is it possible that this is matching what you're looking for?

ineednewpajamas commented 23 hours ago

tags_all which is just exported, and default_tags which is what feeds tags_all is not what I'm looking for. We need the ability to define specific tags for the resources.