forked from snormore/couchbase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.kitchen.ec2.yml
39 lines (35 loc) · 985 Bytes
/
.kitchen.ec2.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
driver:
name: ec2
aws_ssh_key_id: <%= ENV['AWS_SSH_KEY'] %>
security_group_ids: <%= ENV['AWS_SECURITY_GROUPS'] %>
region: <%= ENV['AWS_REGION'] %>
availability_zone: <%= ENV['AWS_AVAILABILITY_ZONE'] %>
require_chef_omnibus: true
subnet_id: <%= ENV['AWS_SUBNET'] %>
instance_type: <%= ENV['INSTANCE_SIZE'] %>
associate_public_ip: false
interface: private
user_data: <%= ENV['USER_DATA_PATH'] %>
customize:
memory: 2048
tags:
OWNER: <%= ENV['AWS_OWNER_TAG'] %>
provisioner:
name: chef_zero
transport:
username: <%= ENV['AWS_USERNAME'] %>
ssh_key: ~/.ssh/<%= ENV['AWS_SSH_KEY'] %>.pem
platforms:
- name: <%= ENV['AWS_PLATFORM_NAME'] %>
driver:
image_id: <%= ENV['AWS_AMI_ID'] %>
suites:
- name: couchbase_server
data_bags_path: test/integration/data_bags
run_list:
- recipe[couchbase::server]
- recipe[test::test_bucket_create]
attributes:
couchbase:
server:
memory_quota_mb: 256