├── README.md ├── aws_ubuntu_ansible.json ├── aws_windows.json ├── boot_config ├── packer_bootstrap_win.ps1 ├── packer_bootstrap_win.txt └── windows-userdata.txt ├── docker_ubuntu.json ├── scripts ├── example_ansible.yml ├── example_bash.sh ├── python_example.py ├── sample_script.ps1 └── welcome.txt └── spot_instances_aws.json /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwampDragons/packer-examples/HEAD/README.md -------------------------------------------------------------------------------- /aws_ubuntu_ansible.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwampDragons/packer-examples/HEAD/aws_ubuntu_ansible.json -------------------------------------------------------------------------------- /aws_windows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwampDragons/packer-examples/HEAD/aws_windows.json -------------------------------------------------------------------------------- /boot_config/packer_bootstrap_win.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwampDragons/packer-examples/HEAD/boot_config/packer_bootstrap_win.ps1 -------------------------------------------------------------------------------- /boot_config/packer_bootstrap_win.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwampDragons/packer-examples/HEAD/boot_config/packer_bootstrap_win.txt -------------------------------------------------------------------------------- /boot_config/windows-userdata.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwampDragons/packer-examples/HEAD/boot_config/windows-userdata.txt -------------------------------------------------------------------------------- /docker_ubuntu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwampDragons/packer-examples/HEAD/docker_ubuntu.json -------------------------------------------------------------------------------- /scripts/example_ansible.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwampDragons/packer-examples/HEAD/scripts/example_ansible.yml -------------------------------------------------------------------------------- /scripts/example_bash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwampDragons/packer-examples/HEAD/scripts/example_bash.sh -------------------------------------------------------------------------------- /scripts/python_example.py: -------------------------------------------------------------------------------- 1 | print "I can run python code from here!" -------------------------------------------------------------------------------- /scripts/sample_script.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwampDragons/packer-examples/HEAD/scripts/sample_script.ps1 -------------------------------------------------------------------------------- /scripts/welcome.txt: -------------------------------------------------------------------------------- 1 | WELCOME TO PACKER! -------------------------------------------------------------------------------- /spot_instances_aws.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwampDragons/packer-examples/HEAD/spot_instances_aws.json --------------------------------------------------------------------------------