You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
module"vault_okta_auth_backend_user" {
source="./modules/vault/r/vault_okta_auth_backend_user"# groups - (optional) is a type of set of stringgroups=[]
# path - (required) is a type of stringpath=null# policies - (optional) is a type of set of stringpolicies=[]
# username - (required) is a type of stringusername=null
}
variable"groups" {
description="(optional) - Groups within the Okta auth backend to associate with this user"type=set(string)
default=null
}
variable"path" {
description="(required) - Path to the Okta auth backend"type=string
}
variable"policies" {
description="(optional) - Policies to associate with this user"type=set(string)
default=null
}
variable"username" {
description="(required) - Name of the user within Okta"type=string
}
resource"vault_okta_auth_backend_user""this" {
# groups - (optional) is a type of set of stringgroups=var.groups# path - (required) is a type of stringpath=var.path# policies - (optional) is a type of set of stringpolicies=var.policies# username - (required) is a type of stringusername=var.username
}