1
0
Fork 0
mirror of https://github.com/imjasonh/terraform-playground synced 2026-07-22 08:01:06 +00:00
Signed-off-by: Jason Hall <jason@chainguard.dev>
This commit is contained in:
Jason Hall 2026-02-03 13:42:59 -05:00
parent fe6e09f4cf
commit a0b5d1f369
7 changed files with 18 additions and 7 deletions

View file

@ -18,3 +18,14 @@ variable "secret_version_adder" {
type = string
description = "User permitted to manage webhook secrets (e.g., user:you@company.biz)."
}
variable "deletion_protection" {
type = bool
description = "Whether to enable deletion protection on resources."
default = false
}
variable "notification_channels" {
type = list(string)
description = "List of notification channel IDs to attach to alerting policies."
}