vault.okta.AuthBackend
Explore with Pulumi AI
Provides a resource for managing an Okta auth backend within Vault.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as vault from "@pulumi/vault";
const example = new vault.okta.AuthBackend("example", {
description: "Demonstration of the Terraform Okta auth backend",
organization: "example",
token: "something that should be kept secret",
groups: [{
groupName: "foo",
policies: [
"one",
"two",
],
}],
users: [{
username: "bar",
groups: ["foo"],
}],
});
import pulumi
import pulumi_vault as vault
example = vault.okta.AuthBackend("example",
description="Demonstration of the Terraform Okta auth backend",
organization="example",
token="something that should be kept secret",
groups=[vault.okta.AuthBackendGroupArgs(
group_name="foo",
policies=[
"one",
"two",
],
)],
users=[vault.okta.AuthBackendUserArgs(
username="bar",
groups=["foo"],
)])
package main
import (
"github.com/pulumi/pulumi-vault/sdk/v6/go/vault/okta"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := okta.NewAuthBackend(ctx, "example", &okta.AuthBackendArgs{
Description: pulumi.String("Demonstration of the Terraform Okta auth backend"),
Organization: pulumi.String("example"),
Token: pulumi.String("something that should be kept secret"),
Groups: okta.AuthBackendGroupTypeArray{
&okta.AuthBackendGroupTypeArgs{
GroupName: pulumi.String("foo"),
Policies: pulumi.StringArray{
pulumi.String("one"),
pulumi.String("two"),
},
},
},
Users: okta.AuthBackendUserTypeArray{
&okta.AuthBackendUserTypeArgs{
Username: pulumi.String("bar"),
Groups: pulumi.StringArray{
pulumi.String("foo"),
},
},
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Vault = Pulumi.Vault;
return await Deployment.RunAsync(() =>
{
var example = new Vault.Okta.AuthBackend("example", new()
{
Description = "Demonstration of the Terraform Okta auth backend",
Organization = "example",
Token = "something that should be kept secret",
Groups = new[]
{
new Vault.Okta.Inputs.AuthBackendGroupArgs
{
GroupName = "foo",
Policies = new[]
{
"one",
"two",
},
},
},
Users = new[]
{
new Vault.Okta.Inputs.AuthBackendUserArgs
{
Username = "bar",
Groups = new[]
{
"foo",
},
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.vault.okta.AuthBackend;
import com.pulumi.vault.okta.AuthBackendArgs;
import com.pulumi.vault.okta.inputs.AuthBackendGroupArgs;
import com.pulumi.vault.okta.inputs.AuthBackendUserArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new AuthBackend("example", AuthBackendArgs.builder()
.description("Demonstration of the Terraform Okta auth backend")
.organization("example")
.token("something that should be kept secret")
.groups(AuthBackendGroupArgs.builder()
.groupName("foo")
.policies(
"one",
"two")
.build())
.users(AuthBackendUserArgs.builder()
.username("bar")
.groups("foo")
.build())
.build());
}
}
resources:
example:
type: vault:okta:AuthBackend
properties:
description: Demonstration of the Terraform Okta auth backend
organization: example
token: something that should be kept secret
groups:
- groupName: foo
policies:
- one
- two
users:
- username: bar
groups:
- foo
Create AuthBackend Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AuthBackend(name: string, args: AuthBackendArgs, opts?: CustomResourceOptions);
@overload
def AuthBackend(resource_name: str,
args: AuthBackendArgs,
opts: Optional[ResourceOptions] = None)
@overload
def AuthBackend(resource_name: str,
opts: Optional[ResourceOptions] = None,
organization: Optional[str] = None,
token_bound_cidrs: Optional[Sequence[str]] = None,
token_type: Optional[str] = None,
disable_remount: Optional[bool] = None,
groups: Optional[Sequence[AuthBackendGroupArgs]] = None,
max_ttl: Optional[str] = None,
namespace: Optional[str] = None,
bypass_okta_mfa: Optional[bool] = None,
token_explicit_max_ttl: Optional[int] = None,
users: Optional[Sequence[AuthBackendUserArgs]] = None,
description: Optional[str] = None,
path: Optional[str] = None,
token_max_ttl: Optional[int] = None,
token_no_default_policy: Optional[bool] = None,
token_num_uses: Optional[int] = None,
token_period: Optional[int] = None,
token_policies: Optional[Sequence[str]] = None,
token_ttl: Optional[int] = None,
base_url: Optional[str] = None,
ttl: Optional[str] = None,
token: Optional[str] = None)
func NewAuthBackend(ctx *Context, name string, args AuthBackendArgs, opts ...ResourceOption) (*AuthBackend, error)
public AuthBackend(string name, AuthBackendArgs args, CustomResourceOptions? opts = null)
public AuthBackend(String name, AuthBackendArgs args)
public AuthBackend(String name, AuthBackendArgs args, CustomResourceOptions options)
type: vault:okta:AuthBackend
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args AuthBackendArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args AuthBackendArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args AuthBackendArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AuthBackendArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AuthBackendArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var exampleauthBackendResourceResourceFromOktaauthBackend = new Vault.Okta.AuthBackend("exampleauthBackendResourceResourceFromOktaauthBackend", new()
{
Organization = "string",
TokenBoundCidrs = new[]
{
"string",
},
TokenType = "string",
DisableRemount = false,
Groups = new[]
{
new Vault.Okta.Inputs.AuthBackendGroupArgs
{
GroupName = "string",
Policies = new[]
{
"string",
},
},
},
Namespace = "string",
BypassOktaMfa = false,
TokenExplicitMaxTtl = 0,
Users = new[]
{
new Vault.Okta.Inputs.AuthBackendUserArgs
{
Username = "string",
Groups = new[]
{
"string",
},
Policies = new[]
{
"string",
},
},
},
Description = "string",
Path = "string",
TokenMaxTtl = 0,
TokenNoDefaultPolicy = false,
TokenNumUses = 0,
TokenPeriod = 0,
TokenPolicies = new[]
{
"string",
},
TokenTtl = 0,
BaseUrl = "string",
Token = "string",
});
example, err := okta.NewAuthBackend(ctx, "exampleauthBackendResourceResourceFromOktaauthBackend", &okta.AuthBackendArgs{
Organization: pulumi.String("string"),
TokenBoundCidrs: pulumi.StringArray{
pulumi.String("string"),
},
TokenType: pulumi.String("string"),
DisableRemount: pulumi.Bool(false),
Groups: okta.AuthBackendGroupTypeArray{
&okta.AuthBackendGroupTypeArgs{
GroupName: pulumi.String("string"),
Policies: pulumi.StringArray{
pulumi.String("string"),
},
},
},
Namespace: pulumi.String("string"),
BypassOktaMfa: pulumi.Bool(false),
TokenExplicitMaxTtl: pulumi.Int(0),
Users: okta.AuthBackendUserTypeArray{
&okta.AuthBackendUserTypeArgs{
Username: pulumi.String("string"),
Groups: pulumi.StringArray{
pulumi.String("string"),
},
Policies: pulumi.StringArray{
pulumi.String("string"),
},
},
},
Description: pulumi.String("string"),
Path: pulumi.String("string"),
TokenMaxTtl: pulumi.Int(0),
TokenNoDefaultPolicy: pulumi.Bool(false),
TokenNumUses: pulumi.Int(0),
TokenPeriod: pulumi.Int(0),
TokenPolicies: pulumi.StringArray{
pulumi.String("string"),
},
TokenTtl: pulumi.Int(0),
BaseUrl: pulumi.String("string"),
Token: pulumi.String("string"),
})
var exampleauthBackendResourceResourceFromOktaauthBackend = new AuthBackend("exampleauthBackendResourceResourceFromOktaauthBackend", AuthBackendArgs.builder()
.organization("string")
.tokenBoundCidrs("string")
.tokenType("string")
.disableRemount(false)
.groups(AuthBackendGroupArgs.builder()
.groupName("string")
.policies("string")
.build())
.namespace("string")
.bypassOktaMfa(false)
.tokenExplicitMaxTtl(0)
.users(AuthBackendUserArgs.builder()
.username("string")
.groups("string")
.policies("string")
.build())
.description("string")
.path("string")
.tokenMaxTtl(0)
.tokenNoDefaultPolicy(false)
.tokenNumUses(0)
.tokenPeriod(0)
.tokenPolicies("string")
.tokenTtl(0)
.baseUrl("string")
.token("string")
.build());
exampleauth_backend_resource_resource_from_oktaauth_backend = vault.okta.AuthBackend("exampleauthBackendResourceResourceFromOktaauthBackend",
organization="string",
token_bound_cidrs=["string"],
token_type="string",
disable_remount=False,
groups=[vault.okta.AuthBackendGroupArgs(
group_name="string",
policies=["string"],
)],
namespace="string",
bypass_okta_mfa=False,
token_explicit_max_ttl=0,
users=[vault.okta.AuthBackendUserArgs(
username="string",
groups=["string"],
policies=["string"],
)],
description="string",
path="string",
token_max_ttl=0,
token_no_default_policy=False,
token_num_uses=0,
token_period=0,
token_policies=["string"],
token_ttl=0,
base_url="string",
token="string")
const exampleauthBackendResourceResourceFromOktaauthBackend = new vault.okta.AuthBackend("exampleauthBackendResourceResourceFromOktaauthBackend", {
organization: "string",
tokenBoundCidrs: ["string"],
tokenType: "string",
disableRemount: false,
groups: [{
groupName: "string",
policies: ["string"],
}],
namespace: "string",
bypassOktaMfa: false,
tokenExplicitMaxTtl: 0,
users: [{
username: "string",
groups: ["string"],
policies: ["string"],
}],
description: "string",
path: "string",
tokenMaxTtl: 0,
tokenNoDefaultPolicy: false,
tokenNumUses: 0,
tokenPeriod: 0,
tokenPolicies: ["string"],
tokenTtl: 0,
baseUrl: "string",
token: "string",
});
type: vault:okta:AuthBackend
properties:
baseUrl: string
bypassOktaMfa: false
description: string
disableRemount: false
groups:
- groupName: string
policies:
- string
namespace: string
organization: string
path: string
token: string
tokenBoundCidrs:
- string
tokenExplicitMaxTtl: 0
tokenMaxTtl: 0
tokenNoDefaultPolicy: false
tokenNumUses: 0
tokenPeriod: 0
tokenPolicies:
- string
tokenTtl: 0
tokenType: string
users:
- groups:
- string
policies:
- string
username: string
AuthBackend Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The AuthBackend resource accepts the following input properties:
- Organization string
- The Okta organization. This will be the first part of the url
https://XXX.okta.com
- Base
Url string - The Okta url. Examples: oktapreview.com, okta.com
- Bypass
Okta boolMfa - 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.
- Description string
- The description of the auth backend
- Disable
Remount bool - If set, opts out of mount migration on path updates. See here for more info on Mount Migration
- Groups
List<Auth
Backend Group> - Associate Okta groups with policies within Vault. See below for more details.
- Max
Ttl string - Maximum duration after which authentication will be expired See the documentation for info on valid duration formats.
- Namespace string
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The
namespace
is always relative to the provider's configured namespace. Available only for Vault Enterprise. - Path string
- Path to mount the Okta auth backend. Default to path
okta
. - Token string
- 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.
- Token
Bound List<string>Cidrs - Specifies the blocks of IP addresses which are allowed to use the generated token
- Token
Explicit intMax Ttl - Generated Token's Explicit Maximum TTL in seconds
- Token
Max intTtl - The maximum lifetime of the generated token
- Token
No boolDefault Policy - If true, the 'default' policy will not automatically be added to generated tokens
- Token
Num intUses - The maximum number of times a token may be used, a value of zero means unlimited
- Token
Period int - Generated Token's Period
- Token
Policies List<string> - Generated Token's Policies
- Token
Ttl int - The initial ttl of the token to generate in seconds
- Token
Type string - The type of token to generate, service or batch
- Ttl string
- Duration after which authentication will be expired. See the documentation for info on valid duration formats.
- Users
List<Auth
Backend User> - Associate Okta users with groups or policies within Vault. See below for more details.
- Organization string
- The Okta organization. This will be the first part of the url
https://XXX.okta.com
- Base
Url string - The Okta url. Examples: oktapreview.com, okta.com
- Bypass
Okta boolMfa - 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.
- Description string
- The description of the auth backend
- Disable
Remount bool - If set, opts out of mount migration on path updates. See here for more info on Mount Migration
- Groups
[]Auth
Backend Group Type Args - Associate Okta groups with policies within Vault. See below for more details.
- Max
Ttl string - Maximum duration after which authentication will be expired See the documentation for info on valid duration formats.
- Namespace string
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The
namespace
is always relative to the provider's configured namespace. Available only for Vault Enterprise. - Path string
- Path to mount the Okta auth backend. Default to path
okta
. - Token string
- 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.
- Token
Bound []stringCidrs - Specifies the blocks of IP addresses which are allowed to use the generated token
- Token
Explicit intMax Ttl - Generated Token's Explicit Maximum TTL in seconds
- Token
Max intTtl - The maximum lifetime of the generated token
- Token
No boolDefault Policy - If true, the 'default' policy will not automatically be added to generated tokens
- Token
Num intUses - The maximum number of times a token may be used, a value of zero means unlimited
- Token
Period int - Generated Token's Period
- Token
Policies []string - Generated Token's Policies
- Token
Ttl int - The initial ttl of the token to generate in seconds
- Token
Type string - The type of token to generate, service or batch
- Ttl string
- Duration after which authentication will be expired. See the documentation for info on valid duration formats.
- Users
[]Auth
Backend User Type Args - Associate Okta users with groups or policies within Vault. See below for more details.
- organization String
- The Okta organization. This will be the first part of the url
https://XXX.okta.com
- base
Url String - The Okta url. Examples: oktapreview.com, okta.com
- bypass
Okta BooleanMfa - 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.
- description String
- The description of the auth backend
- disable
Remount Boolean - If set, opts out of mount migration on path updates. See here for more info on Mount Migration
- groups
List<Auth
Backend Group> - Associate Okta groups with policies within Vault. See below for more details.
- max
Ttl String - Maximum duration after which authentication will be expired See the documentation for info on valid duration formats.
- namespace String
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The
namespace
is always relative to the provider's configured namespace. Available only for Vault Enterprise. - path String
- Path to mount the Okta auth backend. Default to path
okta
. - token String
- 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.
- token
Bound List<String>Cidrs - Specifies the blocks of IP addresses which are allowed to use the generated token
- token
Explicit IntegerMax Ttl - Generated Token's Explicit Maximum TTL in seconds
- token
Max IntegerTtl - The maximum lifetime of the generated token
- token
No BooleanDefault Policy - If true, the 'default' policy will not automatically be added to generated tokens
- token
Num IntegerUses - The maximum number of times a token may be used, a value of zero means unlimited
- token
Period Integer - Generated Token's Period
- token
Policies List<String> - Generated Token's Policies
- token
Ttl Integer - The initial ttl of the token to generate in seconds
- token
Type String - The type of token to generate, service or batch
- ttl String
- Duration after which authentication will be expired. See the documentation for info on valid duration formats.
- users
List<Auth
Backend User> - Associate Okta users with groups or policies within Vault. See below for more details.
- organization string
- The Okta organization. This will be the first part of the url
https://XXX.okta.com
- base
Url string - The Okta url. Examples: oktapreview.com, okta.com
- bypass
Okta booleanMfa - 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.
- description string
- The description of the auth backend
- disable
Remount boolean - If set, opts out of mount migration on path updates. See here for more info on Mount Migration
- groups
Auth
Backend Group[] - Associate Okta groups with policies within Vault. See below for more details.
- max
Ttl string - Maximum duration after which authentication will be expired See the documentation for info on valid duration formats.
- namespace string
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The
namespace
is always relative to the provider's configured namespace. Available only for Vault Enterprise. - path string
- Path to mount the Okta auth backend. Default to path
okta
. - token string
- 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.
- token
Bound string[]Cidrs - Specifies the blocks of IP addresses which are allowed to use the generated token
- token
Explicit numberMax Ttl - Generated Token's Explicit Maximum TTL in seconds
- token
Max numberTtl - The maximum lifetime of the generated token
- token
No booleanDefault Policy - If true, the 'default' policy will not automatically be added to generated tokens
- token
Num numberUses - The maximum number of times a token may be used, a value of zero means unlimited
- token
Period number - Generated Token's Period
- token
Policies string[] - Generated Token's Policies
- token
Ttl number - The initial ttl of the token to generate in seconds
- token
Type string - The type of token to generate, service or batch
- ttl string
- Duration after which authentication will be expired. See the documentation for info on valid duration formats.
- users
Auth
Backend User[] - Associate Okta users with groups or policies within Vault. See below for more details.
- organization str
- The Okta organization. This will be the first part of the url
https://XXX.okta.com
- base_
url str - The Okta url. Examples: oktapreview.com, okta.com
- bypass_
okta_ boolmfa - 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.
- description str
- The description of the auth backend
- disable_
remount bool - If set, opts out of mount migration on path updates. See here for more info on Mount Migration
- groups
Sequence[Auth
Backend Group Args] - Associate Okta groups with policies within Vault. See below for more details.
- max_
ttl str - Maximum duration after which authentication will be expired See the documentation for info on valid duration formats.
- namespace str
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The
namespace
is always relative to the provider's configured namespace. Available only for Vault Enterprise. - path str
- Path to mount the Okta auth backend. Default to path
okta
. - token str
- 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.
- token_
bound_ Sequence[str]cidrs - Specifies the blocks of IP addresses which are allowed to use the generated token
- token_
explicit_ intmax_ ttl - Generated Token's Explicit Maximum TTL in seconds
- token_
max_ intttl - The maximum lifetime of the generated token
- token_
no_ booldefault_ policy - If true, the 'default' policy will not automatically be added to generated tokens
- token_
num_ intuses - The maximum number of times a token may be used, a value of zero means unlimited
- token_
period int - Generated Token's Period
- token_
policies Sequence[str] - Generated Token's Policies
- token_
ttl int - The initial ttl of the token to generate in seconds
- token_
type str - The type of token to generate, service or batch
- ttl str
- Duration after which authentication will be expired. See the documentation for info on valid duration formats.
- users
Sequence[Auth
Backend User Args] - Associate Okta users with groups or policies within Vault. See below for more details.
- organization String
- The Okta organization. This will be the first part of the url
https://XXX.okta.com
- base
Url String - The Okta url. Examples: oktapreview.com, okta.com
- bypass
Okta BooleanMfa - 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.
- description String
- The description of the auth backend
- disable
Remount Boolean - If set, opts out of mount migration on path updates. See here for more info on Mount Migration
- groups List<Property Map>
- Associate Okta groups with policies within Vault. See below for more details.
- max
Ttl String - Maximum duration after which authentication will be expired See the documentation for info on valid duration formats.
- namespace String
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The
namespace
is always relative to the provider's configured namespace. Available only for Vault Enterprise. - path String
- Path to mount the Okta auth backend. Default to path
okta
. - token String
- 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.
- token
Bound List<String>Cidrs - Specifies the blocks of IP addresses which are allowed to use the generated token
- token
Explicit NumberMax Ttl - Generated Token's Explicit Maximum TTL in seconds
- token
Max NumberTtl - The maximum lifetime of the generated token
- token
No BooleanDefault Policy - If true, the 'default' policy will not automatically be added to generated tokens
- token
Num NumberUses - The maximum number of times a token may be used, a value of zero means unlimited
- token
Period Number - Generated Token's Period
- token
Policies List<String> - Generated Token's Policies
- token
Ttl Number - The initial ttl of the token to generate in seconds
- token
Type String - The type of token to generate, service or batch
- ttl String
- Duration after which authentication will be expired. See the documentation for info on valid duration formats.
- users List<Property Map>
- Associate Okta users with groups or policies within Vault. See below for more details.
Outputs
All input properties are implicitly available as output properties. Additionally, the AuthBackend resource produces the following output properties:
- Accessor string
- The mount accessor related to the auth mount. It is useful for integration with Identity Secrets Engine.
- Id string
- The provider-assigned unique ID for this managed resource.
- Accessor string
- The mount accessor related to the auth mount. It is useful for integration with Identity Secrets Engine.
- Id string
- The provider-assigned unique ID for this managed resource.
- accessor String
- The mount accessor related to the auth mount. It is useful for integration with Identity Secrets Engine.
- id String
- The provider-assigned unique ID for this managed resource.
- accessor string
- The mount accessor related to the auth mount. It is useful for integration with Identity Secrets Engine.
- id string
- The provider-assigned unique ID for this managed resource.
- accessor str
- The mount accessor related to the auth mount. It is useful for integration with Identity Secrets Engine.
- id str
- The provider-assigned unique ID for this managed resource.
- accessor String
- The mount accessor related to the auth mount. It is useful for integration with Identity Secrets Engine.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing AuthBackend Resource
Get an existing AuthBackend resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: AuthBackendState, opts?: CustomResourceOptions): AuthBackend
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
accessor: Optional[str] = None,
base_url: Optional[str] = None,
bypass_okta_mfa: Optional[bool] = None,
description: Optional[str] = None,
disable_remount: Optional[bool] = None,
groups: Optional[Sequence[AuthBackendGroupArgs]] = None,
max_ttl: Optional[str] = None,
namespace: Optional[str] = None,
organization: Optional[str] = None,
path: Optional[str] = None,
token: Optional[str] = None,
token_bound_cidrs: Optional[Sequence[str]] = None,
token_explicit_max_ttl: Optional[int] = None,
token_max_ttl: Optional[int] = None,
token_no_default_policy: Optional[bool] = None,
token_num_uses: Optional[int] = None,
token_period: Optional[int] = None,
token_policies: Optional[Sequence[str]] = None,
token_ttl: Optional[int] = None,
token_type: Optional[str] = None,
ttl: Optional[str] = None,
users: Optional[Sequence[AuthBackendUserArgs]] = None) -> AuthBackend
func GetAuthBackend(ctx *Context, name string, id IDInput, state *AuthBackendState, opts ...ResourceOption) (*AuthBackend, error)
public static AuthBackend Get(string name, Input<string> id, AuthBackendState? state, CustomResourceOptions? opts = null)
public static AuthBackend get(String name, Output<String> id, AuthBackendState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Accessor string
- The mount accessor related to the auth mount. It is useful for integration with Identity Secrets Engine.
- Base
Url string - The Okta url. Examples: oktapreview.com, okta.com
- Bypass
Okta boolMfa - 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.
- Description string
- The description of the auth backend
- Disable
Remount bool - If set, opts out of mount migration on path updates. See here for more info on Mount Migration
- Groups
List<Auth
Backend Group> - Associate Okta groups with policies within Vault. See below for more details.
- Max
Ttl string - Maximum duration after which authentication will be expired See the documentation for info on valid duration formats.
- Namespace string
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The
namespace
is always relative to the provider's configured namespace. Available only for Vault Enterprise. - Organization string
- The Okta organization. This will be the first part of the url
https://XXX.okta.com
- Path string
- Path to mount the Okta auth backend. Default to path
okta
. - Token string
- 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.
- Token
Bound List<string>Cidrs - Specifies the blocks of IP addresses which are allowed to use the generated token
- Token
Explicit intMax Ttl - Generated Token's Explicit Maximum TTL in seconds
- Token
Max intTtl - The maximum lifetime of the generated token
- Token
No boolDefault Policy - If true, the 'default' policy will not automatically be added to generated tokens
- Token
Num intUses - The maximum number of times a token may be used, a value of zero means unlimited
- Token
Period int - Generated Token's Period
- Token
Policies List<string> - Generated Token's Policies
- Token
Ttl int - The initial ttl of the token to generate in seconds
- Token
Type string - The type of token to generate, service or batch
- Ttl string
- Duration after which authentication will be expired. See the documentation for info on valid duration formats.
- Users
List<Auth
Backend User> - Associate Okta users with groups or policies within Vault. See below for more details.
- Accessor string
- The mount accessor related to the auth mount. It is useful for integration with Identity Secrets Engine.
- Base
Url string - The Okta url. Examples: oktapreview.com, okta.com
- Bypass
Okta boolMfa - 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.
- Description string
- The description of the auth backend
- Disable
Remount bool - If set, opts out of mount migration on path updates. See here for more info on Mount Migration
- Groups
[]Auth
Backend Group Type Args - Associate Okta groups with policies within Vault. See below for more details.
- Max
Ttl string - Maximum duration after which authentication will be expired See the documentation for info on valid duration formats.
- Namespace string
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The
namespace
is always relative to the provider's configured namespace. Available only for Vault Enterprise. - Organization string
- The Okta organization. This will be the first part of the url
https://XXX.okta.com
- Path string
- Path to mount the Okta auth backend. Default to path
okta
. - Token string
- 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.
- Token
Bound []stringCidrs - Specifies the blocks of IP addresses which are allowed to use the generated token
- Token
Explicit intMax Ttl - Generated Token's Explicit Maximum TTL in seconds
- Token
Max intTtl - The maximum lifetime of the generated token
- Token
No boolDefault Policy - If true, the 'default' policy will not automatically be added to generated tokens
- Token
Num intUses - The maximum number of times a token may be used, a value of zero means unlimited
- Token
Period int - Generated Token's Period
- Token
Policies []string - Generated Token's Policies
- Token
Ttl int - The initial ttl of the token to generate in seconds
- Token
Type string - The type of token to generate, service or batch
- Ttl string
- Duration after which authentication will be expired. See the documentation for info on valid duration formats.
- Users
[]Auth
Backend User Type Args - Associate Okta users with groups or policies within Vault. See below for more details.
- accessor String
- The mount accessor related to the auth mount. It is useful for integration with Identity Secrets Engine.
- base
Url String - The Okta url. Examples: oktapreview.com, okta.com
- bypass
Okta BooleanMfa - 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.
- description String
- The description of the auth backend
- disable
Remount Boolean - If set, opts out of mount migration on path updates. See here for more info on Mount Migration
- groups
List<Auth
Backend Group> - Associate Okta groups with policies within Vault. See below for more details.
- max
Ttl String - Maximum duration after which authentication will be expired See the documentation for info on valid duration formats.
- namespace String
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The
namespace
is always relative to the provider's configured namespace. Available only for Vault Enterprise. - organization String
- The Okta organization. This will be the first part of the url
https://XXX.okta.com
- path String
- Path to mount the Okta auth backend. Default to path
okta
. - token String
- 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.
- token
Bound List<String>Cidrs - Specifies the blocks of IP addresses which are allowed to use the generated token
- token
Explicit IntegerMax Ttl - Generated Token's Explicit Maximum TTL in seconds
- token
Max IntegerTtl - The maximum lifetime of the generated token
- token
No BooleanDefault Policy - If true, the 'default' policy will not automatically be added to generated tokens
- token
Num IntegerUses - The maximum number of times a token may be used, a value of zero means unlimited
- token
Period Integer - Generated Token's Period
- token
Policies List<String> - Generated Token's Policies
- token
Ttl Integer - The initial ttl of the token to generate in seconds
- token
Type String - The type of token to generate, service or batch
- ttl String
- Duration after which authentication will be expired. See the documentation for info on valid duration formats.
- users
List<Auth
Backend User> - Associate Okta users with groups or policies within Vault. See below for more details.
- accessor string
- The mount accessor related to the auth mount. It is useful for integration with Identity Secrets Engine.
- base
Url string - The Okta url. Examples: oktapreview.com, okta.com
- bypass
Okta booleanMfa - 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.
- description string
- The description of the auth backend
- disable
Remount boolean - If set, opts out of mount migration on path updates. See here for more info on Mount Migration
- groups
Auth
Backend Group[] - Associate Okta groups with policies within Vault. See below for more details.
- max
Ttl string - Maximum duration after which authentication will be expired See the documentation for info on valid duration formats.
- namespace string
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The
namespace
is always relative to the provider's configured namespace. Available only for Vault Enterprise. - organization string
- The Okta organization. This will be the first part of the url
https://XXX.okta.com
- path string
- Path to mount the Okta auth backend. Default to path
okta
. - token string
- 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.
- token
Bound string[]Cidrs - Specifies the blocks of IP addresses which are allowed to use the generated token
- token
Explicit numberMax Ttl - Generated Token's Explicit Maximum TTL in seconds
- token
Max numberTtl - The maximum lifetime of the generated token
- token
No booleanDefault Policy - If true, the 'default' policy will not automatically be added to generated tokens
- token
Num numberUses - The maximum number of times a token may be used, a value of zero means unlimited
- token
Period number - Generated Token's Period
- token
Policies string[] - Generated Token's Policies
- token
Ttl number - The initial ttl of the token to generate in seconds
- token
Type string - The type of token to generate, service or batch
- ttl string
- Duration after which authentication will be expired. See the documentation for info on valid duration formats.
- users
Auth
Backend User[] - Associate Okta users with groups or policies within Vault. See below for more details.
- accessor str
- The mount accessor related to the auth mount. It is useful for integration with Identity Secrets Engine.
- base_
url str - The Okta url. Examples: oktapreview.com, okta.com
- bypass_
okta_ boolmfa - 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.
- description str
- The description of the auth backend
- disable_
remount bool - If set, opts out of mount migration on path updates. See here for more info on Mount Migration
- groups
Sequence[Auth
Backend Group Args] - Associate Okta groups with policies within Vault. See below for more details.
- max_
ttl str - Maximum duration after which authentication will be expired See the documentation for info on valid duration formats.
- namespace str
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The
namespace
is always relative to the provider's configured namespace. Available only for Vault Enterprise. - organization str
- The Okta organization. This will be the first part of the url
https://XXX.okta.com
- path str
- Path to mount the Okta auth backend. Default to path
okta
. - token str
- 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.
- token_
bound_ Sequence[str]cidrs - Specifies the blocks of IP addresses which are allowed to use the generated token
- token_
explicit_ intmax_ ttl - Generated Token's Explicit Maximum TTL in seconds
- token_
max_ intttl - The maximum lifetime of the generated token
- token_
no_ booldefault_ policy - If true, the 'default' policy will not automatically be added to generated tokens
- token_
num_ intuses - The maximum number of times a token may be used, a value of zero means unlimited
- token_
period int - Generated Token's Period
- token_
policies Sequence[str] - Generated Token's Policies
- token_
ttl int - The initial ttl of the token to generate in seconds
- token_
type str - The type of token to generate, service or batch
- ttl str
- Duration after which authentication will be expired. See the documentation for info on valid duration formats.
- users
Sequence[Auth
Backend User Args] - Associate Okta users with groups or policies within Vault. See below for more details.
- accessor String
- The mount accessor related to the auth mount. It is useful for integration with Identity Secrets Engine.
- base
Url String - The Okta url. Examples: oktapreview.com, okta.com
- bypass
Okta BooleanMfa - 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.
- description String
- The description of the auth backend
- disable
Remount Boolean - If set, opts out of mount migration on path updates. See here for more info on Mount Migration
- groups List<Property Map>
- Associate Okta groups with policies within Vault. See below for more details.
- max
Ttl String - Maximum duration after which authentication will be expired See the documentation for info on valid duration formats.
- namespace String
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The
namespace
is always relative to the provider's configured namespace. Available only for Vault Enterprise. - organization String
- The Okta organization. This will be the first part of the url
https://XXX.okta.com
- path String
- Path to mount the Okta auth backend. Default to path
okta
. - token String
- 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.
- token
Bound List<String>Cidrs - Specifies the blocks of IP addresses which are allowed to use the generated token
- token
Explicit NumberMax Ttl - Generated Token's Explicit Maximum TTL in seconds
- token
Max NumberTtl - The maximum lifetime of the generated token
- token
No BooleanDefault Policy - If true, the 'default' policy will not automatically be added to generated tokens
- token
Num NumberUses - The maximum number of times a token may be used, a value of zero means unlimited
- token
Period Number - Generated Token's Period
- token
Policies List<String> - Generated Token's Policies
- token
Ttl Number - The initial ttl of the token to generate in seconds
- token
Type String - The type of token to generate, service or batch
- ttl String
- Duration after which authentication will be expired. See the documentation for info on valid duration formats.
- users List<Property Map>
- Associate Okta users with groups or policies within Vault. See below for more details.
Supporting Types
AuthBackendGroup, AuthBackendGroupArgs
- group_
name str - Name of the Okta group
- policies Sequence[str]
- Policies to associate with this group
AuthBackendUser, AuthBackendUserArgs
Import
Okta authentication backends can be imported using its path
, e.g.
$ pulumi import vault:okta/authBackend:AuthBackend example okta
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Vault pulumi/pulumi-vault
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
vault
Terraform Provider.