-
Notifications
You must be signed in to change notification settings - Fork 82
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feat/sagemakerdomain #82
Conversation
… Open Notebook button
default_vpc = ec2.Vpc.from_lookup(self, 'VPCStudio', is_default=True) | ||
vpc_id = default_vpc.vpc_id | ||
subnet_ids = [private_subnet.subnet_id for private_subnet in default_vpc.private_subnets] | ||
subnet_ids += [public_subnet.subnet_id for public_subnet in default_vpc.public_subnets] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't we support isolated subnets too? In our case we have our own VPC setup with isolated subnets.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks, added a corresponding commit
Fault tolerant default VPC lookup Co-authored-by: dlpzx <71252798+dlpzx@users.noreply.github.com>
Any update on this issue? |
Feature or Bugfix
Detail
Relates
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.