Adding Gitea and Signoz (to be expanded).

This commit is contained in:
2025-07-31 09:59:12 -04:00
parent befae1d2e1
commit 76038f2df6
2 changed files with 52 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
terraform {
required_providers {
gitea = {
source = "go-gitea/gitea"
version = "0.7.0"
}
}
backend "s3" {
bucket = "rinoa-terraform"
key = "gitea/.tfstate"
endpoints = { s3 = "http://192.168.1.254:9001" }
region = "us-east-fh-pln"
skip_credentials_validation = true
skip_metadata_api_check = true
skip_region_validation = true
use_path_style = true
skip_requesting_account_id = true # Optional, set to true if MinIO does not support AWS account ID
}
}
provider "gitea" {
# Configuration options
}
+26
View File
@@ -0,0 +1,26 @@
terraform {
required_providers {
signoz = {
source = "signoz/signoz"
version = "0.0.8"
}
}
backend "s3" {
bucket = "rinoa-terraform"
key = "signoz/.tfstate"
endpoints = { s3 = "http://192.168.1.254:9001" }
region = "us-east-fh-pln"
skip_credentials_validation = true
skip_metadata_api_check = true
skip_region_validation = true
use_path_style = true
skip_requesting_account_id = true # Optional, set to true if MinIO does not support AWS account ID
}
}
provider "signoz" {
# Configuration options
}