mirror of https://github.com/pulumi/pulumi.git
6 lines
145 B
Puppet
6 lines
145 B
Puppet
|
resource vpc "awsx:ec2:Vpc" {
|
||
|
subnetSpecs = [
|
||
|
{ type = "Public", cidrMask = 22 },
|
||
|
{ type = "Private", cidrMask = 20 }
|
||
|
]
|
||
|
}
|