Skip to content

Commit

Permalink
Add new configuration document for connection clickup (#99)
Browse files Browse the repository at this point in the history
  • Loading branch information
omerosaienni authored Sep 9, 2024
1 parent d6941f3 commit 55935fa
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions docs/reference/config-files/connection/clickup.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
---
title: clickup
sidebar_label: clickup
---

# clickup

The `clickup` connection can be used to access ClickUp resources.

```hcl
connection "clickup" "my_clickup" {
token = "pk_616_L5H36X3CXXXXXXXWEAZZF0NM5"
}
```

## Arguments

| Name | Type | Required?| Description
|-----------------|---------|----------|-------------------
| `token` | String | Optional | API token

All arguments are optional, and a `clickup` connection with no arguments will behave the same as the [default connection](#default-connection).

## Default Connection

The `clickup` connection type includes an implicit, default connection (`connection.clickup.default`) that will be configured to set the `token` to the `CLICKUP_TOKEN` environment variable.

```hcl
connection "clickup" "default" {
token = env("CLICKUP_TOKEN")
}
```

0 comments on commit 55935fa

Please sign in to comment.