Okta: Managing Access to Groups
Last updated
locals {
account_name = "" #CHANGEME
repo_name = "" #CHANGEME
...
} resource "abbey_grant_kit" "..." {
...
workflow = {
steps = [
{
reviewers = {
- one_of = ["replace-me@example.com"] # CHANGEME
+ one_of = ["alice@example.com"]curl -X POST \
-H "Authorization: Bearer $ABBEY_API_TOKEN" \
-H 'Content-Type: application/json' \
https://api.abbey.io/v1/users/<user_id>/apps \
-d '{"type": "okta", "data": {"user_id": "<your Okta User ID>"}}'variable "okta_org_name" {
type = string
sensitive = true
- default = "dev-12345"
+ default = "dev-12345" # Use your own Okta org
}
variable "okta_base_url" {
type = string
sensitive = true
- default = "oktapreview.com" # CHANGEME
+ default = "okta.com" # Use the okta base where you created your API Token
}