Show / Hide Table of Contents

Class ProviderArgs

Inheritance
System.Object
InputArgs
ResourceArgs
ProviderArgs
Inherited Members
ResourceArgs.Empty
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.Keycloak
Assembly: Pulumi.Keycloak.dll
Syntax
public sealed class ProviderArgs : ResourceArgs

Constructors

View Source

ProviderArgs()

Declaration
public ProviderArgs()

Properties

View Source

ClientId

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

ClientSecret

Declaration
public Input<string> ClientSecret { get; set; }
Property Value
Type Description
Input<System.String>
View Source

ClientTimeout

Timeout (in seconds) of the Keycloak client

Declaration
public Input<int> ClientTimeout { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

InitialLogin

Whether or not to login to Keycloak instance on provider initialization

Declaration
public Input<bool> InitialLogin { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

Password

Declaration
public Input<string> Password { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Realm

Declaration
public Input<string> Realm { get; set; }
Property Value
Type Description
Input<System.String>
View Source

RootCaCertificate

Allows x509 calls using an unknown CA certificate (for development purposes)

Declaration
public Input<string> RootCaCertificate { get; set; }
Property Value
Type Description
Input<System.String>
View Source

TlsInsecureSkipVerify

Allows ignoring insecure certificates when set to true. Defaults to false. Disabling security check is dangerous and should be avoided.

Declaration
public Input<bool> TlsInsecureSkipVerify { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

Url

The base URL of the Keycloak instance, before /auth

Declaration
public Input<string> Url { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Username

Declaration
public Input<string> Username { get; set; }
Property Value
Type Description
Input<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.