Show / Hide Table of Contents

Class AuthBackendArgs

Inheritance
System.Object
InputArgs
ResourceArgs
AuthBackendArgs
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.Vault.Okta
Assembly: Pulumi.Vault.dll
Syntax
public sealed class AuthBackendArgs : ResourceArgs

Constructors

View Source

AuthBackendArgs()

Declaration
public AuthBackendArgs()

Properties

View Source

BaseUrl

The Okta url. Examples: oktapreview.com, okta.com

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

BypassOktaMfa

When true, requests by Okta for a MFA check will be bypassed. This also disallows certain status checks on the account, such as whether the password is expired.

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

Description

The description of the auth backend

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

Groups

Associate Okta groups with policies within Vault. See below for more details.

Declaration
public InputList<AuthBackendGroupArgs> Groups { get; set; }
Property Value
Type Description
InputList<AuthBackendGroupArgs>
View Source

MaxTtl

Maximum duration after which authentication will be expired See the documentation for info on valid duration formats.

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

Organization

The Okta organization. This will be the first part of the url https://XXX.okta.com

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

Path

Path to mount the Okta auth backend

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

Token

The Okta API token. This is required to query Okta for user group membership. If this is not supplied only locally configured groups will be enabled.

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

Ttl

Duration after which authentication will be expired. See the documentation for info on valid duration formats.

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

Users

Associate Okta users with groups or policies within Vault. See below for more details.

Declaration
public InputList<AuthBackendUserArgs> Users { get; set; }
Property Value
Type Description
InputList<AuthBackendUserArgs>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.