Skip to content

Commit abd40af

Browse files
author
Yixin Hao
committed
Added immoral public key.
1 parent a5f3f02 commit abd40af

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

enterprise/coderd/keys/2023-02-08

32 Bytes
Binary file not shown.

enterprise/coderd/licenses.go

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,10 @@ const (
3737
//go:embed keys/2022-08-12
3838
var key20220812 []byte
3939

40-
var Keys = map[string]ed25519.PublicKey{"2022-08-12": ed25519.PublicKey(key20220812)}
40+
//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)}
4144

4245
// postLicense adds a new Enterprise license to the cluster. We allow multiple different licenses
4346
// in the cluster at one time for several reasons:

0 commit comments

Comments
 (0)