civo terraform boilerplates
This commit is contained in:
20
terraform/civo/provider.tf
Normal file
20
terraform/civo/provider.tf
Normal file
@@ -0,0 +1,20 @@
|
||||
# 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"
|
||||
}
|
||||
Reference in New Issue
Block a user