On this page
vault_okta_auth_backend_group
Provides a resource to create a group in an Okta auth backend within Vault.
Example Usage
resource "vault_okta_auth_backend" "example" {
path = "group_okta"
organization = "dummy"
}
resource "vault_okta_auth_backend_group" "foo" {
path = "${vault_okta_auth_backend.example.path}"
group_name = "foo"
policies = ["one", "two"]
}
Argument Reference
The following arguments are supported:
path
- (Required) The path where the Okta auth backend is mountedgroup_name
- (Required) Name of the group within the Oktapolicies
- (Optional) Vault policies to associate with this group
Attributes Reference
No additional attributes are exposed by this resource.
© 2018 HashiCorp
Licensed under the MPL 2.0 License.
https://www.terraform.io/docs/providers/vault/r/okta_auth_backend_group.html