Files
tar-valon-terraform/gitea/main.tf
T

26 lines
613 B
Terraform

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
}