Show / Hide Table of Contents

Class NetworkAreaArgs

Inheritance
System.Object
InputArgs
ResourceArgs
NetworkAreaArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Consul
Assembly: Pulumi.Consul.dll
Syntax
public sealed class NetworkAreaArgs : ResourceArgs

Constructors

View Source

NetworkAreaArgs()

Declaration
public NetworkAreaArgs()

Properties

View Source

Datacenter

The datacenter to use. This overrides the agent's default datacenter and the datacenter in the provider setup.

Declaration
public Input<string> Datacenter { get; set; }
Property Value
Type Description
Input<System.String>
View Source

PeerDatacenter

The name of the Consul datacenter that will be joined to form the area.

Declaration
public Input<string> PeerDatacenter { get; set; }
Property Value
Type Description
Input<System.String>
View Source

RetryJoins

Specifies a list of Consul servers to attempt to join. Servers can be given as IP, IP:port, hostname, or hostname:port.

Declaration
public InputList<string> RetryJoins { get; set; }
Property Value
Type Description
InputList<System.String>
View Source

Token

The ACL token to use. This overrides the token that the agent provides by default.

Declaration
public Input<string> Token { get; set; }
Property Value
Type Description
Input<System.String>
View Source

UseTls

Specifies whether gossip over this area should be encrypted with TLS if possible. Defaults to false.

Declaration
public Input<bool> UseTls { get; set; }
Property Value
Type Description
Input<System.Boolean>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.