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