seven Provider
Example Usage
# SPDX-License-Identifier: EUPL-1.2
terraform {
required_providers {
seven = {
version = "~> 0.1"
source = "terraform.scl.example/seven/infrastructure"
}
}
}
provider "seven" {
# Example configuration:
api_url = "https://127.0.0.1:8008"
}
Schema
Optional
api_url (String) Base URL for API requests. Can also be set with the environment variable SCL_TF_PROVIDER_API_URL. Defaults to https://127.0.0.1:8008 if not set.
bearer_token (String, Sensitive) Authentication token for API requests. It is recommended to pass this in the environment variable SCL_TF_PROVIDER_BEARER_TOKEN instead.