# MongoDB Atlas

## Example Usage

***

{% tabs %}
{% tab title="Terraform" %}
{% code title="mongodb-atlas-integration.tf" %}

```tf
resource "apono_integration" "mongodb-atlas-integration" {
  name                     = "MongoDB Atlas"
  type                     = "mongodb-atlas"
  connector_id             = "apono-connector-id"
  connected_resource_types = ["mongodb-atlas-cluster"]
  metadata = {
    project_id = "<Project Id>"
    cluster_name = "<Cluster Name>"
    connection_type = "<Connection Type>"
    private_endpoint_id = "<Private Endpoint Id>"
    credentials_rotation_period_in_days = "<Credentials rotation period (in days)>"
    credentials_cleanup_period_in_days = "<User cleanup after access is revoked (in days)>"
  }
  kubernetes_secret = {
    name      = "name_template_value"
    namespace = "namespace_template_value"
  }
}
```

{% endcode %}
{% endtab %}

{% tab title="Terraform V2" %}
{% code title="mongodb-atlas-integration.tf" %}

```tf
resource "apono_resource_integration" "mongodb-atlas-integration" {
  name                     = "MongoDB Atlas"
  type                     = "mongodb-atlas"
  connector_id             = "apono-connector-id"
  connected_resource_types = ["mongodb-atlas-cluster"]
  integration_config = {
    project_id = "<Project Id>"
    cluster_name = "<Cluster Name>"
    connection_type = "<Connection Type>"
    private_endpoint_id = "<Private Endpoint Id>"
    credentials_rotation_period_in_days = "<Credentials rotation period (in days)>"
    credentials_cleanup_period_in_days = "<User cleanup after access is revoked (in days)>"
  }
  secret_store_config = {
    kubernetes = {
      name      = "name_template_value"
      namespace = "namespace_template_value"
    }
}
```

{% endcode %}
{% endtab %}

{% tab title="Public API" %}
{% code title="mongodb-atlas-integration.json" %}

```json
{
    "mongodb-atlas-integration": {
        "name": "MongoDB Atlas",
        "type": "mongodb-atlas",
        "connector_id": "apono-connector-id",
        "connected_resource_types": [
            "mongodb-atlas-cluster"
        ],
        "integration_config": {
            "project_id": "<Project Id>",
            "cluster_name": "<Cluster Name>",
            "connection_type": "<Connection Type>",
            "private_endpoint_id": "<Private Endpoint Id>",
            "credentials_rotation_period_in_days": "<Credentials rotation period (in days)>",
            "credentials_cleanup_period_in_days": "<User cleanup after access is revoked (in days)>",
        },
	"secret_store_config": {
    	    "name": "name_template_value",
    	    "namespace": "namespace_template_value"
  	    }
    }
}
```

{% endcode %}
{% endtab %}
{% endtabs %}

## Schema

***

* `type` mongodb-atlas
* `connected_resource_types` List of resource types to sync.

<details>

<summary>Available resource types you can use</summary>

* mongodb-atlas-cluster
* mongodb-atlas-database
* mongodb-atlas-collection
* mongodb-atlas-custom-role

</details>

### Integration Config

***

* `project_id` (Required | String) Project Id
* `cluster_name` (Required | String) Cluster Name
* `connection_type` (Required | String) Connection Type
  * Default value: `Standard`
  * Possible values: Standard, Private, PrivateEndpoint
* `private_endpoint_id` (Optional | String) Private Endpoint Id
* `credentials_rotation_period_in_days` (Optional | String) Credentials rotation period (in days)
* `credentials_cleanup_period_in_days` (Optional | String) User cleanup after access is revoked (in days)
