18 lines
417 B
HCL
18 lines
417 B
HCL
terraform {
|
|
backend "s3" {
|
|
endpoints = {
|
|
s3 = "https://storage.168.119.61.8.sslip.io"
|
|
}
|
|
bucket = "management"
|
|
key = "terraform.tfstate"
|
|
region = "eu-central-1"
|
|
|
|
#encrypt = false
|
|
skip_region_validation = true
|
|
skip_metadata_api_check = true
|
|
skip_credentials_validation = true
|
|
skip_requesting_account_id = true
|
|
use_path_style = true
|
|
}
|
|
}
|