f5b5fbb392
* Port over OSS cluster port refactor components * Start forwarding * Cleanup a bit * Fix copy error * Return error from perf standby creation * Add some more comments * Fix copy/paste error
17 lines
287 B
Go
17 lines
287 B
Go
// +build !enterprise
|
|
|
|
package replication
|
|
|
|
import "github.com/hashicorp/vault/helper/consts"
|
|
|
|
type Cluster struct {
|
|
State consts.ReplicationState
|
|
ClusterID string
|
|
PrimaryClusterAddr string
|
|
}
|
|
|
|
type Clusters struct {
|
|
DR *Cluster
|
|
Performance *Cluster
|
|
}
|