14 lines
323 B
YAML
14 lines
323 B
YAML
## @section Common parameters
|
|
|
|
## @typedef {struct} Subnet - Subnet of a VPC
|
|
## @field {string} cidr - Subnet CIDR, e.g. 192.168.0.0/24
|
|
|
|
## @param {map[string]Subnet} subnets - Subnets of a VPC
|
|
##
|
|
## Example:
|
|
## subnets:
|
|
## mysubnet0:
|
|
## cidr: "172.16.0.0/16"
|
|
## mysubnet1:
|
|
## cidr: "172.17.0.0/16"
|
|
subnets: {}
|