12 lines
325 B
HCL
12 lines
325 B
HCL
terraform {
|
|
backend "s3" {
|
|
key = "terraform.tfstate"
|
|
region = "auto"
|
|
skip_credentials_validation = true
|
|
skip_metadata_api_check = true
|
|
skip_region_validation = true
|
|
skip_requesting_account_id = true
|
|
force_path_style = true
|
|
}
|
|
}
|