Class OidcKey
Inherited Members
Namespace: Pulumi.Vault.Identity
Assembly: Pulumi.Vault.dll
Syntax
public class OidcKey : CustomResource
Constructors
View SourceOidcKey(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 SourceAlgorithm
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> |
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>> |
Name
Name of the OIDC Key to create.
Declaration
public Output<string> Name { get; }
Property Value
| Type | Description |
|---|---|
| Output<System.String> |
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>> |
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 SourceGet(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 |