mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-01-11 22:30:25 +01:00
* feat: add infra's terraform configs * feat: add databases for openobserve - multi clusters * fix: openobserve's db name
42 lines
1.1 KiB
HCL
42 lines
1.1 KiB
HCL
terraform {
|
|
# https://developer.hashicorp.com/terraform/language/settings/backends/s3#credentials-and-shared-configuration
|
|
backend "s3" {
|
|
bucket = "tf-s3-backend"
|
|
key = "homelab/minio/terraform.tfstate"
|
|
region = "us-east-1"
|
|
endpoints = {
|
|
s3 = "https://minio.writefor.fun"
|
|
}
|
|
|
|
# pass access key & secret via:
|
|
# 1. env: AWS_ACCESS_KEY_ID AWS_SECRET_ACCESS_KEY
|
|
# 2. aws credential: ~/.aws/credentials
|
|
# access_key = ""
|
|
# secret_key = ""
|
|
|
|
# we're using minio, skip all aws related validation & checks
|
|
skip_credentials_validation = true
|
|
skip_metadata_api_check = true
|
|
skip_region_validation = true
|
|
skip_requesting_account_id = true
|
|
use_path_style = true
|
|
}
|
|
|
|
required_providers {
|
|
minio = {
|
|
source = "aminueza/minio"
|
|
version = "2.5.0"
|
|
}
|
|
}
|
|
}
|
|
|
|
# https://registry.terraform.io/providers/aminueza/minio/latest/docs
|
|
provider "minio" {
|
|
minio_server = "minio.writefor.fun"
|
|
minio_user = "ryan"
|
|
|
|
minio_api_version = "v4"
|
|
minio_region = "us-east-1"
|
|
minio_ssl = true
|
|
}
|