Created
February 25, 2016 01:53
-
-
Save dgrstl/a8d4428662407b879c4d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dave-mbp:~ dave$ puppet resource ec2_vpc_subnet tse-subnet-avza-1 | |
ec2_vpc_subnet { 'tse-subnet-avza-1': | |
ensure => 'present', | |
availability_zone => 'us-west-2a', | |
cidr_block => '10.98.10.0/24', | |
map_public_ip_on_launch => 'true', | |
region => 'us-west-2', | |
route_table => 'tse-routes', | |
tags => {'created_by' => 'cbarker', 'department' => 'TSE', 'project' => 'Infrastructure'}, | |
vpc => 'tse-vpc', | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment