...
1server {
2 ca_key_type = "rsa-2048"
3 bind_address = "0.0.0.0"
4 bind_port = "8081"
5 trust_domain = "example.com"
6 data_dir = "/run/spire/data"
7 log_level = "DEBUG"
8 socket_path = "/run/spire/sockets/spire-registration.sock"
9 default_svid_ttl = "720h"
10 ca_subject = {
11 country = ["US"],
12 organization = ["SPIRE"],
13 common_name = ""
14 }
15}
16
17plugins {
18 DataStore "sql" {
19 plugin_data {
20 database_type = "sqlite3"
21 connection_string = "datastore.sqlite3"
22 }
23 }
24
25 NodeAttestor "sshpop" {
26 plugin_data {
27 cert_authorities_path = "/opt/spire/conf/server/ssh_cert_authority.pub"
28 }
29 }
30
31 KeyManager "memory" {
32 plugin_data = {}
33 }
34}
View as plain text