This message was deleted.
s
This message was deleted.
b
hey @powerful-continent-32307 - AWS resources need to have
Name
tag on them to show up in the console:
Copy code
const vpc = new aws.ec2.Vpc("my-vpc", {
    cidrBlock: `172.99.0.0/16`,
    tags: {
      "Name": "my-vpc"
    ]
});
p
Thank you so much