One thing I keep forgetting to bring up is to ask ...
# general
h
One thing I keep forgetting to bring up is to ask if anyone has run into a bug(?) where the entry of the VPC exists but the name of vpc is empty in the aws console when creating a VPC from Pulumi? Code:
Copy code
const vpc = new awsx.ec2.Vpc("demo-vpc", {numberOfAvailabilityZones: 3});
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