32 lines
1.1 KiB
Go
32 lines
1.1 KiB
Go
// Copyright © 2019, Oracle and/or its affiliates.
|
|
package seal
|
|
|
|
import (
|
|
log "github.com/hashicorp/go-hclog"
|
|
"github.com/hashicorp/go-kms-wrapping/wrappers/ocikms"
|
|
"github.com/hashicorp/vault/command/server"
|
|
"github.com/hashicorp/vault/vault"
|
|
"github.com/hashicorp/vault/vault/seal"
|
|
)
|
|
|
|
func configureOCIKMSSeal(configSeal *server.Seal, infoKeys *[]string, info *map[string]string, logger log.Logger, inseal vault.Seal) (vault.Seal, error) {
|
|
kms := ocikms.NewWrapper(nil)
|
|
kmsInfo, err := kms.SetConfig(configSeal.Config)
|
|
if err != nil {
|
|
logger.Error("error on setting up config for OCI KMS", "error", err)
|
|
return nil, err
|
|
}
|
|
autoseal := vault.NewAutoSeal(&seal.Access{
|
|
Wrapper: kms,
|
|
})
|
|
if kmsInfo != nil {
|
|
*infoKeys = append(*infoKeys, "Seal Type", "OCI KMS KeyID")
|
|
(*info)["Seal Type"] = configSeal.Type
|
|
(*info)["OCI KMS KeyID"] = kmsInfo[ocikms.KMSConfigKeyID]
|
|
(*info)["OCI KMS Crypto Endpoint"] = kmsInfo[ocikms.KMSConfigCryptoEndpoint]
|
|
(*info)["OCI KMS Management Endpoint"] = kmsInfo[ocikms.KMSConfigManagementEndpoint]
|
|
(*info)["OCI KMS Principal Type"] = kmsInfo["principal_type"]
|
|
}
|
|
return autoseal, nil
|
|
}
|