mirror of
https://github.com/ChristianLempa/boilerplates.git
synced 2024-11-23 00:33:24 +01:00
21 lines
321 B
HCL
21 lines
321 B
HCL
# CIVO Provider
|
|
# ---
|
|
# Initial Provider Configuration for CIVO
|
|
|
|
terraform {
|
|
required_version = ">= 0.13.0"
|
|
|
|
required_providers {
|
|
civo = {
|
|
source = "civo/civo"
|
|
version = "~> 1.0.9"
|
|
}
|
|
}
|
|
}
|
|
|
|
provider "civo" {
|
|
token = var.civo_token
|
|
# (optional): Specify your region
|
|
# region = "FRA1"
|
|
}
|