May 2019
Intermediate to advanced
308 pages
8h 5m
English
To create the template, we will start with the Description and Resources sections, as shown in the following code block:
{ "Description" : "Example Chapter 10: A Simple VPC template with two public and two private VPCs. A NACL permits only MySQL traffic in and out of the private networks", "Resources" : {
In the Resources section, we will be defining the resources. For the VPC, we will need to specify a name for the resource that we can use in the references and for the DependsOn attribute. We also need to define a CIDR block for the VPC. In our example, 10.0.0.0/22 will be the network CIDR for the VPC. As we stated previously, the Tags attribute adds the purpose : demo tag so that it is easily identifiable:
"simpleVPC" : { "Type" ...Read now
Unlock full access