vault_okta_auth_backend_user

Provides a resource to create a user in an Okta auth backend within Vault.

Example Usage

resource "vault_okta_auth_backend" "example" {
    path         = "user_okta"
    organization = "dummy"
}

resource "vault_okta_auth_backend_user" "foo" {
    path     = vault_okta_auth_backend.example.path
    username = "foo"
    groups   = ["one", "two"]
}

Argument Reference

The following arguments are supported:

Attributes Reference

No additional attributes are exposed by this resource.