-
Notifications
You must be signed in to change notification settings - Fork 1.8k
/
Copy pathruntimeflags.go
65 lines (53 loc) · 1.95 KB
/
runtimeflags.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/*
* Teleport
* Copyright (C) 2023 Gravitational, Inc.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/*
This file contains a single global variable controlling which edition
of Teleport is running
This flag contains various global booleans that are set during
Teleport initialization.
These are NOT for configuring Teleport: use regular Config facilities for that,
preferably tailored to specific services, i.e proxy config, auth config, etc
These are for being set once, at the beginning of the process, and for
being visible to any code under 'lib'
*/
package lib
import (
"sync"
)
var (
// insecureDevMode is set to 'true' when teleport is started with a hidden
// --insecure flag. This mode is only useful for learning Teleport and following
// quick starts: it disables HTTPS certificate validation
insecureDevMode bool
// flagLock protects access to all globals declared in this file
flagLock sync.Mutex
)
// SetInsecureDevMode turns the 'insecure' mode on. In this mode Teleport accepts
// self-signed HTTPS certificates (for development only!)
func SetInsecureDevMode(m bool) {
flagLock.Lock()
defer flagLock.Unlock()
insecureDevMode = m
}
// IsInsecureDevMode returns 'true' if Teleport daemon was started with the
// --insecure flag
func IsInsecureDevMode() bool {
flagLock.Lock()
defer flagLock.Unlock()
return insecureDevMode
}