Is there a way to deploy the http api into a custo...
# sst
d
Is there a way to deploy the http api into a custom VPC? E.g. not a default one? Update: API GW has no VPC, duh
So far we've been deploying the api and Aurora cluster into the default VPC, but for an upcoming public sandbox, we need create a fully sequestered environment. This is easy with the Aurora cluster as I'm using the CDK
new DatabaseCluster
construct there, but not as clear with the HTTP API
f
I don’t think API Gateway APIs get deployed into a VPC… (VPC experts please correct me)
There’s a concept of a private API that u can create for a REST api that can only be access via a VPC link
Not that I’m aware of for HTTP api
d
Ah, that's right
Been in the RDS stack too long, API GW is simpler
That does make things easier. Thank you!