From 34bfd7b4198359940c8851cacadc42b56d173ce1 Mon Sep 17 00:00:00 2001 From: Sonia Appasamy Date: Tue, 1 Aug 2023 21:22:25 -0400 Subject: [PATCH] tailcfg: add CapabilityHTTPS const A #cleanup Signed-off-by: Sonia Appasamy --- tailcfg/tailcfg.go | 1 + 1 file changed, 1 insertion(+) diff --git a/tailcfg/tailcfg.go b/tailcfg/tailcfg.go index 68fec3e03..803e74017 100644 --- a/tailcfg/tailcfg.go +++ b/tailcfg/tailcfg.go @@ -1940,6 +1940,7 @@ const ( CapabilitySSHRuleIn = "https://tailscale.com/cap/ssh-rule-in" // some SSH rule reach this node CapabilityDataPlaneAuditLogs = "https://tailscale.com/cap/data-plane-audit-logs" // feature enabled CapabilityDebug = "https://tailscale.com/cap/debug" // exposes debug endpoints over the PeerAPI + CapabilityHTTPS = "https" // https cert provisioning enabled on tailnet // CapabilityBindToInterfaceByRoute changes how Darwin nodes create // sockets (in the net/netns package). See that package for more