You've already forked terraform-bunnynet
18 lines
412 B
HCL
18 lines
412 B
HCL
terraform {
|
|
backend "s3" {
|
|
bucket = "rznet-terraform-state"
|
|
key = "bunnycdn/git.rznet.fr/terraform.tfstate"
|
|
|
|
endpoints = {
|
|
s3 = "https://s3.fr-par.scw.cloud"
|
|
}
|
|
region = "fr-par"
|
|
|
|
# Required for non-AWS S3 providers
|
|
skip_credentials_validation = true
|
|
skip_metadata_api_check = true
|
|
skip_region_validation = true
|
|
skip_requesting_account_id = true
|
|
}
|
|
}
|