Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 1.67 KB

File metadata and controls

30 lines (23 loc) · 1.67 KB
page_title subcategory description
singlestoredb Provider
The Terraform provider plugin for managing SingleStoreDB workspace groups and workspaces.

singlestoredb Provider

The Terraform provider plugin for managing SingleStoreDB workspace groups and workspaces.

Example Usage

provider "singlestoredb" {
  // The SingleStoreDB Terraform provider uses the SINGLESTOREDB_API_KEY environment variable for authentication. 
  // Please set this environment variable with your SingleStore Management API key.
  // You can generate this key from the SingleStore Portal at https://portal.singlestore.com/organizations/org-id/api-keys.
}

Schema

Optional

  • api_key (String, Sensitive) The SingleStore Management API key used for authentication. If not provided, the provider will attempt to read the key from the file specified in the 'api_key_path' attribute or from the environment variable 'SINGLESTOREDB_API_KEY'. Generate your API key in the SingleStore Portal at https://portal.singlestore.com/organizations/org-id/api-keys.
  • api_key_path (String, Sensitive) The absolute path to a file containing the SingleStore Management API key for authentication. If not provided, the provider will use the value in the 'api_key' attribute or the 'SINGLESTOREDB_API_KEY' environment variable. Generate your API key in the SingleStore Portal at https://portal.singlestore.com/organizations/org-id/api-keys.
  • api_service_url (String, Deprecated) The URL of the SingleStore Management API service. This URL is used by the provider to interact with the API.