github.com/google/cloudprober@v0.11.3/common/tlsconfig/proto/config.proto (about)

     1  syntax = "proto2";
     2  
     3  package cloudprober.tlsconfig;
     4  
     5  option go_package = "github.com/google/cloudprober/common/tlsconfig/proto";
     6  
     7  message TLSConfig {
     8    // CA certificate file to verify certificates provided by the other party.
     9    optional string ca_cert_file = 1;
    10  
    11    // Local certificate file.
    12    optional string tls_cert_file = 2;
    13  
    14    // Private key file corresponding to the certificate above.
    15    optional string tls_key_file = 3;
    16  
    17    // Whether to ignore the cert validation.
    18    optional bool disable_cert_validation = 4;
    19  
    20    // ServerName override
    21    optional string server_name = 5;
    22  }