Last active
June 2, 2017 14:09
-
-
Save phoewass/7cbb90b4c8a2b45d1927693a2b0826bb 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
{ | |
"builders": [{ | |
"type": "amazon-ebs", | |
"region": "us-east-1", | |
"vpc_id": "", | |
"subnet_id": "", | |
"source_ami": "ami-12345678", | |
"instance_type": "t2.large", | |
"ami_name": "my-windows2008-ssh", | |
"communicator": "ssh", | |
"ssh_disable_agent" :true, | |
"ssh_username": "Administrator", | |
"ssh_timeout": "15m" | |
}], | |
"provisioners": [ | |
{ | |
"type": "windows-shell", | |
"inline": "hostname" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment