diff options
author | sveneh <sven@ethdev.com> | 2015-01-26 05:52:38 +0800 |
---|---|---|
committer | sveneh <sven@ethdev.com> | 2015-01-26 05:52:38 +0800 |
commit | 58ec49a34da85b71fe5f82b263986faa2b570eaa (patch) | |
tree | 6f1b72b2968a4f53795be2d095c1c68be894ae54 /ansible/roles/ec2/vars/main.yml | |
parent | 52e174b1f7fcd5bcc7fa1f134b9cd085a24ff642 (diff) | |
download | go-tangerine-58ec49a34da85b71fe5f82b263986faa2b570eaa.tar go-tangerine-58ec49a34da85b71fe5f82b263986faa2b570eaa.tar.gz go-tangerine-58ec49a34da85b71fe5f82b263986faa2b570eaa.tar.bz2 go-tangerine-58ec49a34da85b71fe5f82b263986faa2b570eaa.tar.lz go-tangerine-58ec49a34da85b71fe5f82b263986faa2b570eaa.tar.xz go-tangerine-58ec49a34da85b71fe5f82b263986faa2b570eaa.tar.zst go-tangerine-58ec49a34da85b71fe5f82b263986faa2b570eaa.zip |
added EC2 provisioning, optimised docker for EC2, added python and
cppjit client (python not yet working)
Diffstat (limited to 'ansible/roles/ec2/vars/main.yml')
-rw-r--r-- | ansible/roles/ec2/vars/main.yml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/ansible/roles/ec2/vars/main.yml b/ansible/roles/ec2/vars/main.yml new file mode 100644 index 000000000..ea260c927 --- /dev/null +++ b/ansible/roles/ec2/vars/main.yml @@ -0,0 +1,21 @@ +--- +# default config for ec2 instances + +instance_type: c4.xlarge +security_group: client-tests + +# image: ami-d6e7c084 +image: ami-9eaa1cf6 +# region: ap-southeast-1 +region: us-east-1 +keypair: christoph +# keypair: client-tests +volume_size_gb: 50 + +# limit access to AWS to these clients in CDIR notation +ip_access_range: 0.0.0.0/0 + + +project_description: https://github.com/ethereum/tests + +total_no_instances: 1 |