You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please follow the [Getting Started](https://registry.terraform.io/providers/arangodb-managed/oasis/latest/docs/guides/getting-started) guide in the official documentation page.
Copy file name to clipboardExpand all lines: docs/guides/getting-started.md
+10Lines changed: 10 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,6 +16,16 @@ You need to supply proper credentials to the provider before it can be used. API
16
16
Log in to the Oasis dashboard and open the [**API Keys**](https://cloud.arangodb.com/dashboard/user/api-keys) tab of your user account. Click the **New API key** button to generate a new key, which can be used with ArangoDB's public API.
17
17
18
18
```hcl
19
+
terraform {
20
+
required_version = ">= 0.13.0"
21
+
required_providers {
22
+
oasis = {
23
+
source = "arangodb-managed/oasis"
24
+
version = ">=2.1.0"
25
+
}
26
+
}
27
+
}
28
+
19
29
provider "oasis" {
20
30
api_key_id = "" // API Key ID generated in Oasis platform
21
31
api_key_secret = "" // API Key Secret generated in Oasis platform
Copy file name to clipboardExpand all lines: templates/guides/getting-started.md.tmpl
+10Lines changed: 10 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -16,6 +16,16 @@ You need to supply proper credentials to the provider before it can be used. API
16
16
Log in to the Oasis dashboard and open the [**API Keys**](https://cloud.arangodb.com/dashboard/user/api-keys) tab of your user account. Click the **New API key** button to generate a new key, which can be used with ArangoDB's public API.
17
17
18
18
```hcl
19
+
terraform {
20
+
required_version = ">= 0.13.0"
21
+
required_providers {
22
+
oasis = {
23
+
source = "arangodb-managed/oasis"
24
+
version = ">=2.1.0"
25
+
}
26
+
}
27
+
}
28
+
19
29
provider "oasis" {
20
30
api_key_id = "" // API Key ID generated in Oasis platform
21
31
api_key_secret = "" // API Key Secret generated in Oasis platform
0 commit comments