Files
terraform-git/environments/au/syd1/terragrunt.hcl
T
unkinben dc9f3cd595
ci/woodpecker/pr/pre-commit Pipeline was successful
ci/woodpecker/pr/plan Pipeline was successful
fix: remove unused deploy_key variable and duplicate required_providers
2026-06-11 23:30:23 +10:00

25 lines
482 B
HCL

include "root" {
path = find_in_parent_folders("root.hcl")
expose = true
}
include "config" {
path = "${get_repo_root()}/config/config.hcl"
expose = true
}
locals {
config = include.config.locals.config
}
terraform {
source = "../../../modules/gitea_instance"
}
inputs = {
organisation = local.config.organisation
repository = local.config.repository
branch_protection = local.config.branch_protection
team = local.config.team
}