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
});
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.