mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-12-31 18:36:13 -05:00
c6ccee1250
* Bundle helm-install related code in speparate package * Move cilium installation to new helm package
14 lines
256 B
Go
14 lines
256 B
Go
/*
|
|
Copyright (c) Edgeless Systems GmbH
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
package helm
|
|
|
|
// KMSConfig is the configuration needed to set up Constellation's key management service.
|
|
type KMSConfig struct {
|
|
MasterSecret []byte
|
|
Salt []byte
|
|
}
|