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_group" {
source="./modules/vault/r/vault_okta_auth_backend_group"# group_name - (required) is a type of stringgroup_name=null# path - (required) is a type of stringpath=null# policies - (optional) is a type of set of stringpolicies=[]
}
variable"group_name" {
description="(required) - Name of the Okta group"type=string
}
variable"path" {
description="(required) - Path to the Okta auth backend"type=string
}
variable"policies" {
description="(optional) - Policies to associate with this group"type=set(string)
default=null
}
resource"vault_okta_auth_backend_group""this" {
# group_name - (required) is a type of stringgroup_name=var.group_name# path - (required) is a type of stringpath=var.path# policies - (optional) is a type of set of stringpolicies=var.policies
}