Skip to content

Feature Request: Sudo Entitlements #89

@joshgch

Description

@joshgch

I hope this is the correct place to make a feature request, please feel free to close if it isn't.

It would be incredibly useful within my organization to be able to create and manage Sudo Entitlements, as well as assign(bind) them to an oktapam_project_group resource.

Example Usage Pseudocode:

resource "oktapam_entitlement" "this" {
  name = "run-scripts"
  description = "sudo entitlement for running scripts"

  command {
    command = "/opt/scripts/my_script"
    type = "EXECUTABLE"
    arguments = "ANY"
  }

  command {
    command = "/opt/scripts/."
    type = "DIRECTORY"
  }
}

resource "oktapam_project_group" "this" {
  group_name = "team1-standard"
  project_name = "team1-servers-standard"

  create_server_group = true
  server_access = true
  server_admin = false

  group_entitlements [
    oktapam_entitlement.this.id,
  ]
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions