This message was deleted.
# aws
s
This message was deleted.
b
@able-machine-72645 can you try specifying a cidr block for the VPC? I think it’s falling back to retrieving the VPC which is a bug
a
Tried both:
const vpc = new awsx._ec2_._Vpc_("superstate-vpc", { cidrBlock: "10.0.0.0/16" });
and
const vpc = new awsx.ec2.Vpc("superstate-vpc", { cidrBlock: "172.16.8.0/24" });
same issue unfortunately
Is there an argument I need to pass the ALB to tell it to use the VPC I created instead of the default one?
b
likely the vpc public subnet ids
🔥 2
a
that was it! Thank you!