c87b3ac471
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.
10 lines
383 B
Terraform
10 lines
383 B
Terraform
resource "gitea_org" "this" {
|
|
name = var.name
|
|
description = var.description
|
|
full_name = var.full_name
|
|
visibility = var.visibility
|
|
website = var.website
|
|
location = var.location
|
|
repo_admin_change_team_access = var.repo_admin_change_team_access
|
|
}
|