This message was deleted.
# general
s
This message was deleted.
a
I think you need to add tags right? Something like
Copy code
const vpc = new awsx.ec2.Vpc("pulumiTest", {
  cidrBlock: "10.50.0.0/24",

  subnets: [
      { type: "public" },
      { type: "private" }
  ],
  tags: {
    Name: `vpn-test-vpc`,
  },
});
(a lot of things "named" in the aws console are actually just tagged with a field called name)
h
Ohh right. Let me try that. Thanks!
👍 1