forked from chef-boneyard/route53
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.kitchen.yml
More file actions
36 lines (33 loc) · 863 Bytes
/
.kitchen.yml
File metadata and controls
36 lines (33 loc) · 863 Bytes
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
---
driver:
name: vagrant
provisioner:
name: chef_solo
platforms:
- name: ubuntu-12.04
- name: ubuntu-14.04
- name: centos-6.4
- name: centos-7.0
suites:
- name: default
run_list:
- recipe[route53_test::default]
attributes:
route53:
zone_id: <%= ENV['AWS_ZONE_ID'] %>
aws_access_key_id: <%= ENV['AWS_ACCESS_KEY_ID'] %>
aws_secret_access_key: <%= ENV['AWS_SECRET_ACCESS_KEY'] %>
aws_session_token: <%= ENV['AWS_SESSION_TOKEN'] %>
records:
generic_record:
name: 'kitchen-test.yourdomain.org'
value: '16.8.4.3'
type: 'A'
ttl: 3600
alias_record:
name: 'kitchen-test-alias.yourdomain.org'
alias_target:
dns_name: 'dns-name'
host_zone_id: 'host-zone-id'
type: 'A'
run: true