19 lines
527 B
Terraform
19 lines
527 B
Terraform
|
terraform {
|
||
|
required_providers {
|
||
|
digitalocean = {
|
||
|
source = "digitalocean/digitalocean"
|
||
|
version = "~> 2.3.0"
|
||
|
}
|
||
|
}
|
||
|
|
||
|
backend "s3" {
|
||
|
skip_credentials_validation = true
|
||
|
skip_metadata_api_check = true
|
||
|
# Need to specify an AWS region to stop Terraform complaining
|
||
|
region = "us-east-1"
|
||
|
endpoint = "nyc3.digitaloceanspaces.com"
|
||
|
bucket = "jdormit-tf-state"
|
||
|
key = "prod/syncthing.tfstate"
|
||
|
}
|
||
|
}
|