forked from sous-chefs/hashicorp-vault
-
Notifications
You must be signed in to change notification settings - Fork 4
/
.kitchen.yml
65 lines (60 loc) · 1.51 KB
/
.kitchen.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
---
driver:
name: vagrant
transport:
username: vagrant
password: vagrant
provisioner:
name: chef_zero
log_level: debug
product_version: 14
product_name: chef
verifier:
name: inspec
platforms:
- name: ubuntu-22.04-arm64
<% if RUBY_PLATFORM =~ /darwin/ %>
driver:
provider: parallels
box: bento/ubuntu-22.04-arm64
<% end %>
suites:
- name: default
provisioner: &default-provisioner
policyfile: test/fixtures/policies/default.rb
- name: test_data_dir
provisioner:
<<: *default-provisioner
policyfile: test/fixtures/policies/default.rb
lifecycle:
post_create:
- remote: sudo mkdir -p /data
- name: test_unauthenticated_metrics
provisioner:
<<: *default-provisioner
attributes:
hashicorp-vault:
config:
unauthenticated_metrics_access: true
- name: test_license
provisioner:
<<: *default-provisioner
attributes:
hashicorp-vault:
license_content: <%= ENV['VAULT_LICENSE'] %>
- name: test_license_external_ent
provisioner:
<<: *default-provisioner
attributes:
hashicorp-vault:
enterprise: true
license_content: <%= ENV['VAULT_LICENSE'] %>
- name: test_license_internal_ent
provisioner:
<<: *default-provisioner
attributes:
hashicorp-vault:
archive_url_root: "cdn.aws.robloxlabs.com"
enterprise: true
use_internal_repos: true
license_content: <%= ENV['VAULT_LICENSE'] %>