11 lines
384 B
HCL
11 lines
384 B
HCL
terraform {
|
|
backend "s3" {
|
|
bucket = "kekscloud-infra-terraform"
|
|
key = "terraform.tfstate"
|
|
region = "fr-par"
|
|
endpoints = { s3 = "https://s3.fr-par.scw.cloud" }
|
|
skip_credentials_validation = true
|
|
skip_region_validation = true
|
|
skip_requesting_account_id = true
|
|
}
|
|
}
|