...

Source file src/edge-infra.dev/pkg/lib/ncr/gcp/security/ssl_policy.go

Documentation: edge-infra.dev/pkg/lib/ncr/gcp/security

     1  // Package security contains constants used by various components that are part
     2  // of the Edge ecosystem to reliably create and manage the appropriate GCP
     3  // security policies and resources.
     4  //
     5  // This package should avoid doing things like actually creating K8s objects
     6  // so that consumers don't have to compile K8s dependencies when they don't
     7  // need them.
     8  package security
     9  
    10  var (
    11  	// MinTLSVersion is the minimum TLS version required in GCP ComputeSSLPolicies
    12  	// per NCR security team.
    13  	MinTLSVersion = "TLS_1_2"
    14  
    15  	// DefaultSSLPolicyName refers to the ComputeSSLPolicy created in all projects
    16  	// provisioned by Edge.
    17  	DefaultSSLPolicyName = "ncr-default"
    18  )
    19  

View as plain text