Last active
August 29, 2015 14:04
-
-
Save initcron/a7d5e8a3e4ad48153b9c to your computer and use it in GitHub Desktop.
Cloudformation Tempaltes
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
| # Cloudformation Template URI for Puppet Master | |
| http://initcron-training.s3.amazonaws.com/puppet/cfn-puppet-master.template | |
| # Cloudformation Template URI for Puppet Agent | |
| http://initcron-training.s3.amazonaws.com/puppet/cfn-puppet-agent.template | |
| # vagrant config for aws | |
| config.vm.provider :aws do |aws, override| | |
| aws.access_key_id = "ACCESS_KEY" | |
| aws.secret_access_key = "SECRET_KEY" | |
| aws.keypair_name = "keypair_name" | |
| aws.ami = "ami-d805f4b0" | |
| aws.instance_type = "t1.micro" | |
| override.ssh.username = "ubuntu" | |
| override.ssh.private_key_path = "PATH_TO_PRIVATE_KEY_PEM" | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment