hashicorp / terraform-provider-awscc

Terraform AWS Cloud Control provider
https://registry.terraform.io/providers/hashicorp/awscc/latest/docs
Mozilla Public License 2.0
249 stars 113 forks source link

Add tags to gamelift resources #1541

Open albpb2 opened 5 months ago

albpb2 commented 5 months ago

Community Note

Description

Tags are missing in gamelift resources (at least aliases and fleets, but probably more resource types).

New or Affected Resource(s)

Potential Terraform Configuration

# Copy-paste your Terraform configurations here - for large Terraform configs,
# please use a service like Dropbox and share a link to the ZIP file. For
# security, you can also encrypt the files using our GPG public key.
resource "awscc_gamelift_alias" "alias" {
  name        = "Test alias"
  description = "Test description"

  routing_strategy = {
    type     = "SIMPLE"
    fleet_id = "Test fleet id"
  }

  tags = [
    {
      key   = "Test tag"
      value = "Test value"
    }
  ]
}
ejnarvala commented 1 month ago

I think this would first have to be supported on the aws cloudformation side which awscc seems to get auto-generated from - https://github.com/aws-cloudformation/cloudformation-coverage-roadmap/issues/834