32 lines
661 B
Go
32 lines
661 B
Go
package nomad
|
|
|
|
import (
|
|
"github.com/hashicorp/go-hclog"
|
|
"golang.org/x/exp/slices"
|
|
)
|
|
|
|
// LicenseConfig allows for tunable licensing config
|
|
// primarily used for enterprise testing
|
|
type LicenseConfig struct {
|
|
// LicenseEnvBytes is the license bytes to use for the server's license
|
|
LicenseEnvBytes string
|
|
|
|
// LicensePath is the path to use for the server's license
|
|
LicensePath string
|
|
|
|
// AdditionalPubKeys is a set of public keys to
|
|
AdditionalPubKeys []string
|
|
|
|
Logger hclog.InterceptLogger
|
|
}
|
|
|
|
func (c *LicenseConfig) Copy() *LicenseConfig {
|
|
if c == nil {
|
|
return nil
|
|
}
|
|
|
|
nc := *c
|
|
nc.AdditionalPubKeys = slices.Clone(c.AdditionalPubKeys)
|
|
return &nc
|
|
}
|