terraform update
This commit is contained in:
@@ -1,4 +1,6 @@
|
|||||||
# For more information, see https://www.terraform.io/docs/backends/types/remote.html
|
# General Terraform Settings
|
||||||
|
# ---
|
||||||
|
|
||||||
terraform {
|
terraform {
|
||||||
required_providers {
|
required_providers {
|
||||||
cloudflare = {
|
cloudflare = {
|
||||||
@@ -11,7 +13,28 @@ terraform {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# Declare Variables
|
||||||
|
# ---
|
||||||
|
# TODO: Create a yourfile.auto.tfvars file in the project directory and add your variables in it.
|
||||||
|
# Example:
|
||||||
|
# cloudflare_email = "youremail@yourmail.com"
|
||||||
|
# cloudflare_api_key = "your-api-key"
|
||||||
|
# civo_token = "your-token"
|
||||||
|
|
||||||
|
variable "cloudflare_email" {}
|
||||||
|
variable "cloudflare_api_key" {}
|
||||||
|
variable "civo_token" {}
|
||||||
|
|
||||||
|
# Set Default Provider Settings
|
||||||
|
# ---
|
||||||
|
|
||||||
provider "cloudflare" {
|
provider "cloudflare" {
|
||||||
email = var.cloudflare_email
|
email = var.cloudflare_email
|
||||||
api_key = var.cloudflare_api_key
|
api_key = var.cloudflare_api_key
|
||||||
}
|
}
|
||||||
|
|
||||||
|
provider "civo" {
|
||||||
|
token = var.civo_token
|
||||||
|
# (optional) change the defaullt region
|
||||||
|
# region = "FRA1"
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user