Show / Hide Table of Contents

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",
    });
}

}
Inheritance
System.Object
Resource
CustomResource
OpenIdConnectProvider
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.Aws.Iam
Assembly: Pulumi.Aws.dll
Syntax
public class OpenIdConnectProvider : CustomResource

Constructors

View Source

OpenIdConnectProvider(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 Source

Arn

The ARN assigned by AWS for this provider.

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

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>>
View Source

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>>
View Source

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 Source

Get(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
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.