Files
terraform-git/modules/gitea_instance/modules/organisation/variables.tf
T
unkinben c87b3ac471 feat: initial terraform-git project
Manage Gitea resources via Terraform/Terragrunt with YAML-driven config.

Resources managed:
- Organisation (unkin)
- 28 repositories with settings
- 6 teams with members
- 13 branch protection rules
- 9 Woodpecker CI repo activations
- Deploy key module (ready, no keys yet)

Config structure: config/<service>/<org>/<type>/<object>.yaml
Consul backend for state, Vault for auth tokens.
2026-06-10 23:45:41 +10:00

34 lines
425 B
Terraform

variable "name" {
type = string
}
variable "description" {
type = string
default = ""
}
variable "full_name" {
type = string
default = null
}
variable "visibility" {
type = string
default = "public"
}
variable "website" {
type = string
default = ""
}
variable "location" {
type = string
default = ""
}
variable "repo_admin_change_team_access" {
type = bool
default = false
}