Skip to content

Latest commit

 

History

History
45 lines (36 loc) · 1.34 KB

index.md

File metadata and controls

45 lines (36 loc) · 1.34 KB
layout page_title description
Provider: Oasis
The Oasis Terraform provider allows full lifecycle management of ArangoGraph Insights Platform (formerly called Oasis) resources.

Oasis Provider

The Terraform Oasis provider is a plugin for Terraform that allows for the full lifecycle management of ArangoGraph Insights Platform resources.

Api keys can be generated and viewed under the user's dashboard view on the API Keys tab. On a logged in view, navigate to API Keys and hit the button labeled New API key. This will generate a set of keys which can be used with ArangoDB's public API.

Example Usage

terraform {
  required_version = ">= 0.13.0"
  required_providers {
    oasis = {
      source  = "arangodb-managed/oasis"
      version = ">=2.1.0"
    }
  }
}

provider "oasis" {
  api_key_id     = "" // API Key ID generated in Oasis platform
  api_key_secret = "" // API Key Secret generated in Oasis platform
}

Schema

Optional

  • api_key_id (String) OASIS API KEY ID
  • api_key_secret (String) OASIS API KEY SECRET
  • api_port_suffix (String) OASIS API PORT SUFFIX
  • oasis_endpoint (String) OASIS API ENDPOINT
  • organization (String) Default Oasis Organization
  • project (String) Default Oasis Project