...

Text file src/github.com/in-toto/in-toto-golang/test-infra/spire/agent/agent.conf

Documentation: github.com/in-toto/in-toto-golang/test-infra/spire/agent

     1agent {
     2    data_dir = "/run/spire"
     3    log_level = "DEBUG"
     4    server_address = "spire-server"
     5    server_port = "8081"
     6    socket_path = "/run/spire/sockets/agent.sock"
     7    trust_domain = "example.com"
     8    insecure_bootstrap = "true"
     9}
    10
    11plugins {
    12    NodeAttestor "sshpop" {
    13        plugin_data {
    14            host_cert_path = "/opt/spire/conf/agent/agent_ssh_key-cert.pub"
    15            host_key_path = "/opt/spire/conf/agent/agent_ssh_key"
    16        }
    17    }
    18
    19    KeyManager "memory" {
    20        plugin_data {
    21        }
    22    }
    23    
    24    WorkloadAttestor "unix" {
    25        plugin_data {
    26        }
    27    }
    28}

View as plain text