Show / Hide Table of Contents

Class OidcKey

Inheritance
System.Object
Resource
CustomResource
OidcKey
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 OidcKey : CustomResource

Constructors

View Source

OidcKey(String, OidcKeyArgs, CustomResourceOptions)

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

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

The unique name of the resource

OidcKeyArgs 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

Algorithm

Signing algorithm to use. Signing algorithm to use. Allowed values are: RS256 (default), RS384, RS512, ES256, ES384, ES512, EdDSA.

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

AllowedClientIds

Array of role client ids allowed to use this key for signing. If empty, no roles are allowed. If "*", all roles are allowed.

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

Name

Name of the OIDC Key to create.

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

RotationPeriod

How often to generate a new signing key in number of seconds

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

VerificationTtl

"Controls how long the public portion of a signing key will be available for verification after being rotated in seconds.

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

Methods

View Source

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

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

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

OidcKeyState state

Any extra arguments used during the lookup.

CustomResourceOptions options

A bag of options that control this resource's behavior

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