dns: use linode object storage for tfstate

Ariadne Conill 2022-06-09 03:23:53 +00:00
parent 0090f4312f
commit 548492444d
1 changed files with 9 additions and 0 deletions

View File

@ -5,6 +5,15 @@ terraform {
version = "1.26.0" version = "1.26.0"
} }
} }
backend "s3" {
bucket = "treehouse-state"
key = "tfstate"
region = "us-southeast-1"
endpoint = "us-southeast-1.linodeobjects.com"
skip_credentials_validation = true
skip_region_validation = true
}
} }
provider "linode" { provider "linode" {