Adding Gitea and Signoz (to be expanded).
This commit is contained in:
@@ -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
|
||||||
|
}
|
||||||
@@ -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
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user