|
|
@@ -98,6 +98,14 @@ const (
|
|
|
// automatically authenticate managed devices, without requiring user interaction.
|
|
|
AuthKey Key = "AuthKey"
|
|
|
|
|
|
+ // MachineCertificateSubject is the exact name of a Subject that needs
|
|
|
+ // to be present in an identity's certificate chain to sign a RegisterRequest,
|
|
|
+ // formatted as per pkix.Name.String(). The Subject may be that of the identity
|
|
|
+ // itself, an intermediate CA or the root CA.
|
|
|
+ //
|
|
|
+ // Example: "CN=Tailscale Inc Test Root CA,OU=Tailscale Inc Test Certificate Authority,O=Tailscale Inc,ST=ON,C=CA"
|
|
|
+ MachineCertificateSubject Key = "MachineCertificateSubject"
|
|
|
+
|
|
|
// Keys with a string array value.
|
|
|
// AllowedSuggestedExitNodes's string array value is a list of exit node IDs that restricts which exit nodes are considered when generating suggestions for exit nodes.
|
|
|
AllowedSuggestedExitNodes Key = "AllowedSuggestedExitNodes"
|