Files
HetznerTerra/terraform/backend.tf

11 lines
286 B
Terraform
Raw Normal View History

terraform {
backend "s3" {
key = "terraform.tfstate"
region = "auto"
skip_credentials_validation = true
skip_metadata_api_check = true
skip_region_validation = true
force_path_style = true
}
}