forked from toshke/big-blue-button-cloudformation-cfhl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vpc.config.yaml
37 lines (30 loc) · 923 Bytes
/
vpc.config.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
###
### name property is used to name vpc, and for
### tagging of related configuration values
###
name: bbb-vpc
###
### List of availability zones will affect count of
### subnets per network zone (public, private)
###
availability_zones:
- ap-southeast-2a
- ap-southeast-2b
- ap-southeast-2c
### network CIDR
### subnet CIDRs are created by taking sub-sequent CIDR blocks
### out of this master range
cidr: 10.200.0.0/16
### this property acts as a feature flag for public subnets
### connected to the internet via Internet Gateway
internet_enabled: true
###
### NatGateway for internet connectivity from private subnets
### you can choose to deploy single in first AZ (cheaper, no HA)
### or one Nat Gateway per availability zone (more expensive, internet access is in HA mode)
nat_gateway:
enabled: false
per_az: false
tags:
renderedBy: cfhighlander
createdBy: github.com/toshke/