diff --git a/gitea/main.tf b/gitea/main.tf new file mode 100644 index 0000000..c63db5c --- /dev/null +++ b/gitea/main.tf @@ -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 +} \ No newline at end of file diff --git a/signoz/main.tf b/signoz/main.tf new file mode 100644 index 0000000..45f5154 --- /dev/null +++ b/signoz/main.tf @@ -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 +} \ No newline at end of file