dns: use linode object storage for tfstate
continuous-integration/woodpecker the build failed Details

Ariadne Conill 2022-06-09 03:23:53 +00:00
parent 64e3d347ed
commit 27dfab2eb1
1 changed files with 9 additions and 0 deletions

View File

@ -5,6 +5,15 @@ terraform {
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" {