Skip to content

Commit

Permalink
add back in NAT count
Browse files Browse the repository at this point in the history
  • Loading branch information
ranchodeluxe committed Aug 23, 2023
1 parent 4e51d31 commit 1b55f03
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions standalone_base_infrastructure/network_construct.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ def __init__(
max_azs=base_settings.vpc_max_azs,
cidr=base_settings.vpc_cidr,
subnet_configuration=[public_subnet, private_subnet],
nat_gateways=base_settings.vpc_nat_gateways,
)

vpc_endpoints = {
Expand Down
1 change: 1 addition & 0 deletions standalone_base_infrastructure/standalone_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ class baseSettings(BaseSettings):

vpc_cidr: Optional[str] = "10.100.0.0/16"
vpc_max_azs: Optional[int] = 2
vpc_nat_gateways: Optional[int] = 1

def cdk_env(self) -> dict:
"""Load a cdk environment dict for stack"""
Expand Down

0 comments on commit 1b55f03

Please sign in to comment.