All Gitea and runner resources use count = var.enable_gitea ? 1 : 0 (or for_each with an empty set when false). The gitea namespace is conditionally included. Default is false. To enable: terraform apply -var enable_gitea=true Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
6 lines
194 B
HCL
6 lines
194 B
HCL
variable "enable_gitea" {
|
|
description = "Deploy Gitea and the act runner. Set to false to skip (e.g. on a dev laptop without a dedicated server)."
|
|
type = bool
|
|
default = false
|
|
}
|