This message was deleted.
# aws
s
This message was deleted.
b
could you open an issue for the naming issue?
as for temporary access, you can add a route to the nat gateway
f
Thanks for the answer! I figured I could indeed add the route the following way:
Copy code
(async () => {
  const ngw = await vpc.natGateways;
  vpc.isolatedSubnets.then((nets) => nets[0].createRoute("nat", ngw[0]));
})();
I don’t think it justifies an issue, because I don’t have any good use case other than that. Maybe the phrasing in the docs could be changed? The sentence “If not provided, the type of the subnet will be used” made me think that the type will not be used in the name
b
isolated isn’t meant to have any routes out to a nat gateway. it might be better to create another private subnet?
f
Hmm, the use case that my manager was worried about is a situation where I’d want temporary internet access to install something on a machine that’s inside an isolated subnet. Would adding a route be a plausible solution or is there a more elegant way?
b
you could create a proxy in the private subnet and configure proxy access in the isolated subnet, but it sounds like you might not need an isolated subnet?
f
I see, thank you! These are all hypothetical questions because we currently only evaluating Pulumi, so thanks for pointing this workflow out 🙂
b
happy to assist if you need any AWS design/infrastructure help! feel free to reach out via our contact form
❤️ 1