-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.kitchen.yml
95 lines (88 loc) · 2.02 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
---
driver:
name: vagrant
platforms:
- name: ubuntu-14.04
provisioner:
name: chef_solo
verifier:
name: inspec
suites:
- name: default
run_list:
- recipe[cfssl::server]
- recipe[cfssl::client]
attributes:
cfssl:
server:
config:
signing:
default:
usages:
- "any"
expiry: "10h"
auth_key: "ca-auth"
auth_keys:
ca-auth:
type: "standard"
key: "0123456789ABCDEF0123456789ABCDEF"
csr:
hosts:
- "pki.example.com"
key:
algo: "rsa"
size: 2048
names:
-
C: "US"
L: "New York"
O: "Example, LLC"
OU: "Server"
client:
server_url: http://127.0.0.1:8888
subject:
names:
- C: US
L: New York
O: Example, LLC
OU: Test
cert: /tmp/cert.pem
key: /tmp/key.pem
ca: /tmp/ca.pem
shared_key: 0123456789ABCDEF0123456789ABCDEF
- name: noauth
run_list:
- recipe[cfssl::server]
- recipe[cfssl::client]
attributes:
cfssl:
server:
config:
signing:
default:
usages:
- "any"
expiry: "11h"
csr:
hosts:
- "pki.example.com"
key:
algo: "rsa"
size: 2048
names:
-
C: "US"
L: "New York"
O: "Example, LLC"
OU: "Server"
client:
server_url: http://127.0.0.1:8888
subject:
names:
- C: US
L: New York
O: Example, LLC
OU: Test
cert: /tmp/cert.pem
key: /tmp/key.pem
ca: /tmp/ca.pem