|
|
@ -4,6 +4,7 @@
|
|
|
|
package config
|
|
|
|
package config
|
|
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
import (
|
|
|
|
|
|
|
|
"context"
|
|
|
|
"crypto/tls"
|
|
|
|
"crypto/tls"
|
|
|
|
"encoding/base64"
|
|
|
|
"encoding/base64"
|
|
|
|
"encoding/json"
|
|
|
|
"encoding/json"
|
|
|
@ -29,6 +30,9 @@ import (
|
|
|
|
"github.com/hashicorp/go-multierror"
|
|
|
|
"github.com/hashicorp/go-multierror"
|
|
|
|
"github.com/hashicorp/go-sockaddr/template"
|
|
|
|
"github.com/hashicorp/go-sockaddr/template"
|
|
|
|
"github.com/hashicorp/memberlist"
|
|
|
|
"github.com/hashicorp/memberlist"
|
|
|
|
|
|
|
|
"github.com/hashicorp/vault-client-go"
|
|
|
|
|
|
|
|
"github.com/hashicorp/vault-client-go/schema"
|
|
|
|
|
|
|
|
"golang.org/x/time/rate"
|
|
|
|
|
|
|
|
|
|
|
|
"github.com/hashicorp/consul/agent/cache"
|
|
|
|
"github.com/hashicorp/consul/agent/cache"
|
|
|
|
"github.com/hashicorp/consul/agent/checks"
|
|
|
|
"github.com/hashicorp/consul/agent/checks"
|
|
|
@ -817,6 +821,8 @@ func (b *builder) build() (rt RuntimeConfig, err error) {
|
|
|
|
|
|
|
|
|
|
|
|
serverMode := boolVal(c.ServerMode)
|
|
|
|
serverMode := boolVal(c.ServerMode)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
SetEncryptKeyIfVaultIsUsed(&c)
|
|
|
|
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------
|
|
|
|
// ----------------------------------------------------------------
|
|
|
|
// build runtime config
|
|
|
|
// build runtime config
|
|
|
|
//
|
|
|
|
//
|
|
|
@ -1116,6 +1122,13 @@ func (b *builder) build() (rt RuntimeConfig, err error) {
|
|
|
|
XDSUpdateRateLimit: limitVal(c.XDS.UpdateMaxPerSecond),
|
|
|
|
XDSUpdateRateLimit: limitVal(c.XDS.UpdateMaxPerSecond),
|
|
|
|
AutoReloadConfigCoalesceInterval: 1 * time.Second,
|
|
|
|
AutoReloadConfigCoalesceInterval: 1 * time.Second,
|
|
|
|
LocalProxyConfigResyncInterval: 30 * time.Second,
|
|
|
|
LocalProxyConfigResyncInterval: 30 * time.Second,
|
|
|
|
|
|
|
|
UseVault: boolVal(c.UseVault),
|
|
|
|
|
|
|
|
VaultAddress: stringVal(c.VaultAddress),
|
|
|
|
|
|
|
|
VaultRoleID: stringVal(c.VaultRoleID),
|
|
|
|
|
|
|
|
VaultSecretID: stringVal(c.VaultSecretID),
|
|
|
|
|
|
|
|
VaultSecretPath: stringVal(c.VaultSecretPath),
|
|
|
|
|
|
|
|
VaultSecretMountPath: stringVal(c.VaultSecretMountPath),
|
|
|
|
|
|
|
|
CredentialNameInVaultSecret: stringVal(c.CredentialNameInVaultSecret),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// host metrics are enabled if consul is configured with HashiCorp Cloud Platform integration
|
|
|
|
// host metrics are enabled if consul is configured with HashiCorp Cloud Platform integration
|
|
|
@ -2850,3 +2863,37 @@ func (b *builder) raftLogStoreConfigVal(raw *RaftLogStoreRaw) consul.RaftLogStor
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return cfg
|
|
|
|
return cfg
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
func SetEncryptKeyIfVaultIsUsed(config *Config) {
|
|
|
|
|
|
|
|
if !boolVal(config.UseVault) {
|
|
|
|
|
|
|
|
return
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
client, err := vault.New(vault.WithAddress(stringVal(config.VaultAddress)))
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
|
|
|
panic(fmt.Errorf("failed to create vault client: %v", err))
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx := context.Background()
|
|
|
|
|
|
|
|
resp, err := client.Auth.AppRoleLogin(
|
|
|
|
|
|
|
|
ctx,
|
|
|
|
|
|
|
|
schema.AppRoleLoginRequest{
|
|
|
|
|
|
|
|
RoleId: stringVal(config.VaultRoleID),
|
|
|
|
|
|
|
|
SecretId: stringVal(config.VaultSecretID),
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
|
|
|
panic(fmt.Errorf("failed to login to vault: %v", err))
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if err = client.SetToken(resp.Auth.ClientToken); err != nil {
|
|
|
|
|
|
|
|
panic(fmt.Errorf("failed to set vault token: %v", err))
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
vault_response, err := client.Secrets.KvV2Read(
|
|
|
|
|
|
|
|
ctx,
|
|
|
|
|
|
|
|
stringVal(config.VaultSecretPath),
|
|
|
|
|
|
|
|
vault.WithMountPath(stringVal(config.VaultSecretMountPath)),
|
|
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
|
|
|
panic(fmt.Errorf("failed to get Vault secret: %v", err))
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
encrypt_key := vault_response.Data.Data[stringVal(config.CredentialNameInVaultSecret)].(string)
|
|
|
|
|
|
|
|
config.EncryptKey = &encrypt_key
|
|
|
|
|
|
|
|
}
|
|
|
|