-
-
Notifications
You must be signed in to change notification settings - Fork 160
/
kitchen.yml
59 lines (53 loc) · 1.24 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
driver:
name: vagrant
provisioner:
name: chef_infra
enforce_idempotency: true
multiple_converge: 2
deprecations_as_errors: true
chef_license: accept-no-persist
verifier:
name: inspec
platforms:
- name: amazonlinux-2
- name: centos-7
- name: centos-stream-8
- name: debian-10
- name: debian-10
- name: freebsd-12
- name: fedora-latest
- name: opensuse-leap-15
- name: ubuntu-18.04
- name: ubuntu-20.04
suites:
- name: server
run_list:
- recipe[openvpn::server]
attributes:
openvpn:
config:
verb: 1
mute: 10
route: ["192.168.4.0 255.255.255.0"]
push_routes:
- 192.168.10.0 255.255.255.0
- 10.12.10.0 255.255.255.0
push_options:
dhcp-option:
- "DOMAIN local"
- "DOMAIN-SEARCH local"
- name: server_verification
run_list:
- recipe[openvpn::server]
- recipe[openvpn::users]
attributes:
openvpn:
server_verification: "remote-cert-tls server"
- name: server_verify_no_databag
run_list:
- recipe[openvpn::server]
- recipe[openvpn::users]
attributes:
openvpn:
server_verification: "remote-cert-tls server"
use_databag: false