mirror of
https://github.com/logos-storage/bittorrent-benchmarks.git
synced 2026-02-18 11:43:33 +00:00
Adds Terraform configuration to provision a DO K8s cluster with auto-scaling node pools for running Codex benchmarks. Signed-off-by: Chrysostomos Nanakos <chris@include.gr>
20 lines
520 B
HCL
20 lines
520 B
HCL
terraform {
|
|
backend "s3" {
|
|
endpoints = {
|
|
s3 = "https://<S3_REGION>.digitaloceanspaces.com"
|
|
}
|
|
bucket = "codex-infra-terraform"
|
|
key = "clusters/codex-benchmarks-do-<DO_REGION>/terraform.tfstate"
|
|
region = "<S3_REGION>"
|
|
|
|
access_key = "<S3_ACCESS_KEY>"
|
|
secret_key = "<S3_SECRET_KEY>"
|
|
|
|
skip_credentials_validation = true
|
|
skip_requesting_account_id = true
|
|
skip_metadata_api_check = true
|
|
skip_region_validation = true
|
|
skip_s3_checksum = true
|
|
}
|
|
}
|