christianlempa-boilerplates/terraform/civo/provider.tf

21 lines
320 B
Terraform
Raw Normal View History

2022-03-04 17:38:14 +01:00
# CIVO Provider
# ---
# Initial Provider Configuration for CIVO
terraform {
2024-01-12 10:50:17 +01:00
required_version = ">= 1.5.0"
2022-03-04 17:38:14 +01:00
required_providers {
civo = {
source = "civo/civo"
version = "~> 1.1.0"
2022-03-04 17:38:14 +01:00
}
}
}
provider "civo" {
token = var.civo_token
# (optional): Specify your region
# region = "FRA1"
}