package policy const ( // These policy constants can be used to configure Linkerd's default behavior. // https://linkerd.io/2.11/reference/authorization-policy/ AllUnAuthenticated = "all-unauthenticated" AllAuthenticated = "all-authenticated" ClusterAuthenticated = "cluster-authenticated" ClusterUnauthenticated = "cluster-unauthenticated" Deny = "deny" // Default is the default policy for Edge-managed Linkerd installations Default = Deny )