Consul is a distributed, highly available, and data center aware solution to connect and configure applications across dynamic, distributed infrastructure.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

20 lines
594 B

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0
syntax = "proto3";
package hashicorp.consul.tenancy.v2beta1;
import "pbresource/annotations.proto";
// The name of the partition (enterprise only) is in the outer Resource.ID.Name.
// It must be unique within a cluster and must be a DNS hostname.
// There are also other reserved names that may not be used.
message Partition {
option (hashicorp.consul.resource.spec) = {scope: SCOPE_CLUSTER};
// Optional user provided description. It is not used internally.
string description = 1;
bool disable_gossip = 2;
}