Show / Hide Table of Contents

Class AclTokenArgs

Inheritance
System.Object
InputArgs
ResourceArgs
AclTokenArgs
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 AclTokenArgs : ResourceArgs

Constructors

View Source

AclTokenArgs()

Declaration
public AclTokenArgs()

Properties

View Source

AccessorId

The uuid of the token. If omitted, Consul will generate a random uuid.

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

Description

The description of the token.

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

Local

The flag to set the token local to the current datacenter.

Declaration
public Input<bool> Local { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

Namespace

The namespace to create the token within.

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

Policies

The list of policies attached to the token.

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

Roles

The list of roles attached to the token.

Declaration
public InputList<string> Roles { get; set; }
Property Value
Type Description
InputList<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.