This repo contains the Terraform, Ansible, and Capistrano configurations to deploy a static Jekyll site to multiple instances behind a LoadBalancer.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
404 B

terraform {
backend "s3" {
bucket = "prod-env"
key = "./terraform.tfstate"
region = "us-east-1" # e.g. us-east-1
endpoint = "us-southeast-1.linodeobjects.com" # e.g. us-east-1.linodeobjects.com
skip_credentials_validation = true # Terraform will ask AWS about credential validation instead of Linode if this is enabled.
}
}