We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5f3f02 commit abd40afCopy full SHA for abd40af
enterprise/coderd/keys/2023-02-08
32 Bytes
enterprise/coderd/licenses.go
@@ -37,7 +37,10 @@ const (
37
//go:embed keys/2022-08-12
38
var key20220812 []byte
39
40
-var Keys = map[string]ed25519.PublicKey{"2022-08-12": ed25519.PublicKey(key20220812)}
+//go:embed keys/2023-02-08
41
+var key20230208 []byte
42
+
43
+var Keys = map[string]ed25519.PublicKey{"2022-08-12": ed25519.PublicKey(key20220812), "2023-02-08": ed25519.PublicKey(key20230208)}
44
45
// postLicense adds a new Enterprise license to the cluster. We allow multiple different licenses
46
// in the cluster at one time for several reasons:
0 commit comments