Questions: How I can modify subnet tags using Pulu...
# general
l
Copy code
const vpc = new awsx.ec2.Vpc(clusterName, {
  subnets: [
    {
      type: 'public',
      tags: {
        '<http://kubernetes.io/role/elb|kubernetes.io/role/elb>': '',
        '<http://kubernetes.io/cluster/syngenta-platform-eksCluster-128eacd|kubernetes.io/cluster/syngenta-platform-eksCluster-128eacd>': 'shared' // ?? Cannot get cluster name at the time of vpc creation.
      }
    }
  ]
});
e
@late-printer-99022 tags are added automatically later when you create https://www.pulumi.com/docs/reference/pkg/nodejs/pulumi/eks/#Cluster
l
No, in my case elb etc tags not created automatically
c
you figure this out @late-printer-99022? Need to do the same thing for the exact same reason...