open-vault/vault/replication/cluster.go
2022-01-05 12:02:03 -06:00

17 lines
292 B
Go

//go:build !enterprise
package replication
import "github.com/hashicorp/vault/sdk/helper/consts"
type Cluster struct {
State consts.ReplicationState
ClusterID string
PrimaryClusterAddr string
}
type Clusters struct {
DR *Cluster
Performance *Cluster
}