- ArgoCD manages MinIO (phase 0), Terraform manages infrastructure - Runner workflow: pulls state from S3, validates, plans, applies - 34 resources imported to state, S3 backend operational - Fixed AppProject repos, S3 endpoint deprecation, runner package manager
17 lines
503 B
Terraform
17 lines
503 B
Terraform
# S3 backend (MinIO remote state)
|
|
terraform {
|
|
backend "s3" {
|
|
bucket = "terraform-state"
|
|
key = "homelab/terraform.tfstate"
|
|
region = "us-east-1"
|
|
endpoints = {
|
|
s3 = "https://minio-api.riotpiao.homelab.com"
|
|
}
|
|
profile = "minio"
|
|
skip_credentials_validation = true
|
|
skip_requesting_account_id = true
|
|
skip_region_validation = true
|
|
use_path_style = true
|
|
}
|
|
}
|