Files
Compose-Files/Terraform/civo/provider.tf
T
2026-07-20 09:23:17 -04:00

21 lines
320 B
Terraform

# CIVO Provider
# ---
# Initial Provider Configuration for CIVO
terraform {
required_version = ">= 1.5.0"
required_providers {
civo = {
source = "civo/civo"
version = "~> 1.0.9"
}
}
}
provider "civo" {
token = var.civo_token
# (optional): Specify your region
# region = "FRA1"
}