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
9 lines
404 B
3 years ago
|
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.
|
||
|
}
|
||
|
}
|