# Okta users

## Overview

Collect all user details from Okta along with their metadata. Enrich your logs with the gathered metadata.

## How to use with Terraform

To deploy this integration using Terraform, you can use the [`coralogix_integration`](https://registry.terraform.io/providers/coralogix/coralogix/latest/docs/resources/integration) resource provided by the Coralogix Terraform provider. Below is an example configuration:

```hcl
resource "coralogix_integration" "okta-users" {
  integration_key = "okta-users"
  version         = "0.0.1"

  parameters = {
    IntegrationName = "Okta"
    OktaHost = "<OktaHost>"
    OktaApiKey = "<OktaApiKey>"
  }
}
```

Replace the placeholder values with your actual configuration parameters. Refer to the parameter table below for required fields and their descriptions.

## Revisions

0.0.1

| Name            | Type   | Required | Description                                     |
| --------------- | ------ | -------- | ----------------------------------------------- |
| IntegrationName | String | Yes      | Used to identify the integration.               |
| OktaApiKey      | String | Yes      | Used to connect to and retrieve logs from Okta. |
| OktaHost        | String | Yes      | The domain of your Okta Application.            |
