aws-cloudformation / cloudformation-coverage-roadmap

The AWS CloudFormation Public Coverage Roadmap
https://aws.amazon.com/cloudformation/
Creative Commons Attribution Share Alike 4.0 International
1.11k stars 57 forks source link

AWS::EC2::VPCEndpoint - Tags #196

Open farski opened 5 years ago

farski commented 5 years ago

Add support for tags on AWS::EC2::VPCEndpoint resources

AlbertZakharov commented 1 year ago

+1

gazzoy commented 1 year ago

+1

mattyboy84 commented 1 year ago

+1 How isn't this supported?

adam-intel commented 1 year ago

+1 Please add this feature

dkAnBlWo commented 1 year ago

+1

seabyrn commented 1 year ago

+1. IMO tag support should be table stakes for CFN resources.

maherrj commented 1 year ago

+1 Cost allocation tags are critical to us. VPC Endpoints have a non trivial cost, so really keen for this support so we can attribute cost correctly.

koDaegon commented 1 year ago

+1

xWink commented 10 months ago

Hi everyone, thank you for your patience! It's with great pleasure that I can say we are actively working on adding support for tagging VPC Endpoints, alongside supporting many other PrivateLink API features. Please keep your eyes peeled, as we'll provide more updates on our progress here!

revamp-muto-kotaro commented 9 months ago

This is The Best News of 2024 for me!

takeda commented 9 months ago

Judging on overall attention to such simple change and the age of the ticket I say this will also be best news of 2025 and 2026.

ysa23 commented 8 months ago

+1

minhio commented 8 months ago

Judging on overall attention to such simple change and the age of the ticket I say this will also be best news of 2025 and 2026.

i just want to comment so i can come back here in a couple years

princewadhwa commented 8 months ago

+1

craigbosco commented 8 months ago

Definitely need this and much anticipating the update. Thank you!

shaikegross commented 7 months ago

Please release soon we want this πŸ™

tomdionysus commented 7 months ago

Still an issue, please fix. CloudFormation doesn't support Tags in the resource, but it can be manually tagged.

shendriksen commented 7 months ago

+1

nemeth commented 7 months ago

+1

tcmnal commented 6 months ago

+1

ThomasSteinbach commented 6 months ago

What's so difficult on this?

ryanwilliams83 commented 6 months ago

I deployed six more yesterday, and used this work-around in CDK to add the tags.

// import { AwsCustomResource, AwsCustomResourcePolicy, PhysicalResourceId } from 'aws-cdk-lib/custom-resources';

  new AwsCustomResource(this, 'VpcEndpointTags', {
    installLatestAwsSdk: false,
    onUpdate: {
      action: 'createTags',
      parameters: {
        Resources: [
          vpcEndpoint.vpcEndpointId
        ],
        Tags: [
          {
            Key: 'Name',
            Value: 'Cookie Monster'
          }
        ]
      },
      physicalResourceId: PhysicalResourceId.of(Date.now().toString()),
        service: 'EC2'
      },
      policy: AwsCustomResourcePolicy.fromSdkCalls({
        resources: AwsCustomResourcePolicy.ANY_RESOURCE,
      })
  });
estanqueiroa commented 5 months ago

+1

Cumming5412 commented 5 months ago

+1

davidgatti commented 4 months ago

2024...

kose-yusuke-ochi commented 4 months ago

γƒͺγƒͺγƒΌγ‚Ήγ•γ‚Œγ‚‹γ“γ¨γ‚’εΎ…ζœ›γ—γ¦γŠγ‚ŠγΎγ™ γ‚ˆγ‚γ—γγŠι‘˜γ„γ„γŸγ—γΎγ™οΌ

mmieluch commented 4 months ago

5 years for simple tagging support. This is ridiculous.

m1g0r commented 4 months ago

+1, сost allocation tags are very necessary for us

estanqueiroa commented 4 months ago

in the meantime, please check my github repo for a solution using lambda /awscode/cloudformation/vpc-endpoints-tags

koen-venly commented 3 months ago

Half of 2024... Jesus... It's just tags...

While in Terraform land... These are the things that make me wish I went the Terraform way... CloudFormation... AWS's own product, in their own environment... In something that they emphasize... Nope... to hard...

resource "aws_vpc_endpoint" "s3" {
  vpc_id       = aws_vpc.main.id
  service_name = "com.amazonaws.us-west-2.s3"

  tags = {
    Environment = "test"
  }
}
SonyDavid commented 3 months ago

Please add this

amouly commented 2 months ago

Any update?