Class OpenIdConnectProvider
Provides an IAM OpenID Connect provider.
Example Usage
using Pulumi;
using Aws = Pulumi.Aws;
class MyStack : Stack
{
public MyStack()
{
var @default = new Aws.Iam.OpenIdConnectProvider("default", new Aws.Iam.OpenIdConnectProviderArgs
{
ClientIdLists =
{
"266362248691-342342xasdasdasda-apps.googleusercontent.com",
},
ThumbprintLists = {},
Url = "https://accounts.google.com",
});
}
}
Inherited Members
Namespace: Pulumi.Aws.Iam
Assembly: Pulumi.Aws.dll
Syntax
public class OpenIdConnectProvider : CustomResource
Constructors
View SourceOpenIdConnectProvider(String, OpenIdConnectProviderArgs, CustomResourceOptions)
Create a OpenIdConnectProvider resource with the given unique name, arguments, and options.
Declaration
public OpenIdConnectProvider(string name, OpenIdConnectProviderArgs args, CustomResourceOptions options = null)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | name | The unique name of the resource |
| OpenIdConnectProviderArgs | args | The arguments used to populate this resource's properties |
| CustomResourceOptions | options | A bag of options that control this resource's behavior |
Properties
View SourceArn
The ARN assigned by AWS for this provider.
Declaration
public Output<string> Arn { get; }
Property Value
| Type | Description |
|---|---|
| Output<System.String> |
ClientIdLists
A list of client IDs (also known as audiences). When a mobile or web app registers with an OpenID Connect provider, they establish a value that identifies the application. (This is the value that's sent as the client_id parameter on OAuth requests.)
Declaration
public Output<ImmutableArray<string>> ClientIdLists { get; }
Property Value
| Type | Description |
|---|---|
| Output<System.Collections.Immutable.ImmutableArray<System.String>> |
ThumbprintLists
A list of server certificate thumbprints for the OpenID Connect (OIDC) identity provider's server certificate(s).
Declaration
public Output<ImmutableArray<string>> ThumbprintLists { get; }
Property Value
| Type | Description |
|---|---|
| Output<System.Collections.Immutable.ImmutableArray<System.String>> |
Url
The URL of the identity provider. Corresponds to the iss claim.
Declaration
public Output<string> Url { get; }
Property Value
| Type | Description |
|---|---|
| Output<System.String> |
Methods
View SourceGet(String, Input<String>, OpenIdConnectProviderState, CustomResourceOptions)
Get an existing OpenIdConnectProvider resource's state with the given name, ID, and optional extra properties used to qualify the lookup.
Declaration
public static OpenIdConnectProvider Get(string name, Input<string> id, OpenIdConnectProviderState 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. |
| OpenIdConnectProviderState | state | Any extra arguments used during the lookup. |
| CustomResourceOptions | options | A bag of options that control this resource's behavior |
Returns
| Type | Description |
|---|---|
| OpenIdConnectProvider |