Does anyone using aws-javascript have issues with ...
# general
p
Does anyone using aws-javascript have issues with aws vpc not being created with a name?
Copy code
const vpc = new aws.ec2.Vpc("my-vpc", {
    cidrBlock: `172.99.0.0/16`,
});
This doesn't create the name in aws console
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