Show / Hide Table of Contents

Class AuthBackendRoleTag

Reads role tag information from an AWS auth backend in Vault.

Inheritance
System.Object
Resource
CustomResource
AuthBackendRoleTag
Inherited Members
CustomResource.Id
Resource.GetResourceType()
Resource.GetResourceName()
Resource.Urn
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.Vault.Aws
Assembly: Pulumi.Vault.dll
Syntax
public class AuthBackendRoleTag : CustomResource

Constructors

View Source

AuthBackendRoleTag(String, AuthBackendRoleTagArgs, CustomResourceOptions)

Create a AuthBackendRoleTag resource with the given unique name, arguments, and options.

Declaration
public AuthBackendRoleTag(string name, AuthBackendRoleTagArgs args, CustomResourceOptions options = null)
Parameters
Type Name Description
System.String name

The unique name of the resource

AuthBackendRoleTagArgs args

The arguments used to populate this resource's properties

CustomResourceOptions options

A bag of options that control this resource's behavior

Properties

View Source

AllowInstanceMigration

If set, allows migration of the underlying instances where the client resides. Use with caution.

Declaration
public Output<bool?> AllowInstanceMigration { get; }
Property Value
Type Description
Output<System.Nullable<System.Boolean>>
View Source

Backend

The path to the AWS auth backend to read role tags from, with no leading or trailing /s. Defaults to "aws".

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

DisallowReauthentication

If set, only allows a single token to be granted per instance ID.

Declaration
public Output<bool?> DisallowReauthentication { get; }
Property Value
Type Description
Output<System.Nullable<System.Boolean>>
View Source

InstanceId

Instance ID for which this tag is intended for. If set, the created tag can only be used by the instance with the given ID.

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

MaxTtl

The maximum TTL of the tokens issued using this role.

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

Policies

The policies to be associated with the tag. Must be a subset of the policies associated with the role.

Declaration
public Output<ImmutableArray<string>> Policies { get; }
Property Value
Type Description
Output<System.Collections.Immutable.ImmutableArray<System.String>>
View Source

Role

The name of the AWS auth backend role to read role tags from, with no leading or trailing /s.

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

TagKey

The key of the role tag.

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

TagValue

The value to set the role key.

Declaration
public Output<string> TagValue { get; }
Property Value
Type Description
Output<System.String>

Methods

View Source

Get(String, Input<String>, AuthBackendRoleTagState, CustomResourceOptions)

Get an existing AuthBackendRoleTag resource's state with the given name, ID, and optional extra properties used to qualify the lookup.

Declaration
public static AuthBackendRoleTag Get(string name, Input<string> id, AuthBackendRoleTagState state = null, CustomResourceOptions options = null)
Parameters
Type Name Description
System.String name

The unique name of the resulting resource.

Input<System.String> id

The unique provider ID of the resource to lookup.

AuthBackendRoleTagState state

Any extra arguments used during the lookup.

CustomResourceOptions options

A bag of options that control this resource's behavior

Returns
Type Description
AuthBackendRoleTag
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.