Skip to content

Commit

Permalink
docs: update documentation for the private NAT Gateways setup
Browse files Browse the repository at this point in the history
  • Loading branch information
pierre authored and pierre committed Apr 27, 2024
1 parent c3a309f commit 0666d56
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,8 @@ If `one_nat_gateway_per_az = true` and `single_nat_gateway = false`, then the mo

### Fully private NAT Gateway

In order to implement the [Private NAT Solution](https://aws.amazon.com/blogs/networking-and-content-delivery/how-to-solve-private-ip-exhaustion-with-private-nat-solution/) indicated by AWS we create fully private NAT Gteways by setting the `connectivity_type` argument to `private`.

```hcl
module vpc {
source = "terraform-aws-modules/vpc/aws"
Expand All @@ -120,7 +122,6 @@ module vpc {
single_nat_gateway = false
create_igw = false
nat_gateway_connectivity_type = "private"
use_nat_gateway_private_ips = []
}
```
Expand Down

0 comments on commit 0666d56

Please sign in to comment.