Show / Hide Table of Contents

Class OidcRole

Inheritance
System.Object
Resource
CustomResource
OidcRole
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.Identity
Assembly: Pulumi.Vault.dll
Syntax
public class OidcRole : CustomResource

Constructors

View Source

OidcRole(String, OidcRoleArgs, CustomResourceOptions)

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

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

The unique name of the resource

OidcRoleArgs 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

ClientId

The value that will be included in the aud field of all the OIDC identity tokens issued by this role

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

Key

A configured named key, the key must already exist before tokens can be issued.

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

Name

Name of the OIDC Role to create.

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

Template

The template string to use for generating tokens. This may be in string-ified JSON or base64 format. See the documentation for the template format.

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

Ttl

TTL of the tokens generated against the role in number of seconds.

Declaration
public Output<int?> Ttl { get; }
Property Value
Type Description
Output<System.Nullable<System.Int32>>

Methods

View Source

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

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

Declaration
public static OidcRole Get(string name, Input<string> id, OidcRoleState 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.

OidcRoleState state

Any extra arguments used during the lookup.

CustomResourceOptions options

A bag of options that control this resource's behavior

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