feat: Allow to pass prefix for rule names (#2437)

This commit is contained in:
Omer Levi Hevroni
2023-02-07 14:04:45 +02:00
committed by GitHub
parent a8e0de0b3f
commit 68fe60f1c4
3 changed files with 12 additions and 1 deletions

View File

@@ -224,3 +224,13 @@ variable "create_instance_profile" {
type = bool
default = true
}
################################################################################
# Event Bridge Rules
################################################################################
variable "rule_name_prefix" {
description = "Prefix used for all event bridge rules"
type = string
default = "Karpenter"
}