From 5ce993ada9c79e6a3b3833c7296260886cdefbcc Mon Sep 17 00:00:00 2001 From: Jim Van Fleet Date: Mon, 22 Aug 2016 16:12:18 -0400 Subject: [PATCH] AWS builder, does not run --- shibboleth-appliance-aws.json | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 shibboleth-appliance-aws.json diff --git a/shibboleth-appliance-aws.json b/shibboleth-appliance-aws.json new file mode 100644 index 0000000..8851f07 --- /dev/null +++ b/shibboleth-appliance-aws.json @@ -0,0 +1,29 @@ +{ + "min_packer_version": "0.8.6", + "description": "Shibboleth appliance ", + "variables": { + "region": "us-west-1", + "timestamper": "{{timestamp}}" + }, + "provisioners": [ + { + "type": "ansible", + "playbook_file": "ansible-playbooks/shibboleth-appliance-vbox.yml", + "sftp_command": "/usr/libexec/sftp-server -e", + "ansible_env_vars": [ "ANSIBLE_HOST_KEY_CHECKING=False" ], + "user": "centos" + } + ], + "builders": [ + { + "type": "amazon-ebs", + "access_key": "AKIAJGTQSCEQTDCIUU6A", + "secret_key": "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", + "region": "us-west-1", + "source_ami": "ami-af4333cf", + "instance_type": "t2.large", + "ssh_username": "centos", + "ami_name": "shibboleth-idp {{timestamp}}" + } + ] +}