-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathnamed_certs.yml
More file actions
34 lines (34 loc) · 1.13 KB
/
named_certs.yml
File metadata and controls
34 lines (34 loc) · 1.13 KB
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
certificates:
ca-certs:
- out: "./root_ca"
name: "root"
- out: "./intermediate_ca"
name: "intermediate"
ca-certificate: "./root_ca/root.crt"
ca-key: "./root_ca/root.key"
days: 5
node-certs:
- out: "./node1"
name: "node1"
ca-certificate: "./intermediate_ca/intermediate.crt"
ca-key: "./intermediate_ca/intermediate.key"
ip-addresses: "127.0.0.1,172.20.240.1"
dns-names: "localhost,eventstore-node1.localhost.com"
- out: "./node2"
name: "node2"
ca-certificate: "./intermediate_ca/intermediate.crt"
ca-key: "./intermediate_ca/intermediate.key"
ip-addresses: "127.0.0.2,172.20.240.2"
dns-names: "localhost,eventstore-node2.localhost.com"
- out: "./node3"
name: "node3"
ca-certificate: "./intermediate_ca/intermediate.crt"
ca-key: "./intermediate_ca/intermediate.key"
ip-addresses: "127.0.0.3,172.20.240.3"
dns-names: "localhost,eventstore-node2.localhost.com"
user-certs:
- out: "./user-admin"
username: "admin"
name: "admin"
ca-certificate: "./root_ca/root.crt"
ca-key: "./root_ca/root.key"