AWS CDK, ecs-patterns, ApplicationLoadBalancedFargateService, setting tags

747 Views Asked by At

New to CDK, deploying on an account with enforced resource tagging policy. How to set tags on resources? Specifically, how to pass tag values for the ALB created within ApplicationLoadBalancedFargateService construct?

 const service = new ecs_patterns.ApplicationLoadBalancedFargateService(this, "MyService", {
  cluster: cluster,
  cpu: 512,
  memoryLimitMiB: 2048,
  desiredCount: 1,
  publicLoadBalancer: true,
  taskImageOptions: {
    image: ecs.ContainerImage.fromAsset(path.join(__dirname, "..", "..", "docker-hello")),
  },
  propagateTags: PropagatedTagSource.SERVICE
});
1

There are 1 best solutions below

0
On BEST ANSWER

Turns out you don't pass tags but add tags on constructs and reference to ALB construct is available as a property of service. And service property "propagateTags" set to SERVICE makes all underlying resources inherit tags. Brilliant.

Tags.of(service.loadBalancer).add("alb", "Special value");
Tags.of(service).add("common", "value");