Is there a way to add `tags` to an `awsx.Cluster`?...
# general
f
Is there a way to add
tags
to an
awsx.Cluster
? I don't see a param for that currently but you can do it in the console.
w
@lemon-spoon-91807 will probably be able to point in the right direction on this.
l
@full-dress-10026 Is this an awsx.Cluster or an awsx.ecs.Cluster?
f
awsx.ecs.Cluster
l
in that case, yes. you can. though it looks like our typings are wrong (and i'll fix that)
awsx.ecs.ClusterArgs should have:
Copy code
readonly tags?: pulumi.Input<{
        [key: string]: any;
    }>;
in it
Let me quickly fix that up
I'll try to get that in, and then we can rev a release for you
👍 1
for now, you can workaround it by manually passing it in.