Skip to content

Commit 7dbb2e8

Browse files
JoshLuedemanCopilot
andcommitted
fix: add missing variable declarations for use_remote_spoke_gateway and enable_traffic_analytics
Adds the two undeclared variables referenced in 03-modules.workload.spoke.tf to variables.workload.spoke.tf, fixing TFLint CI failures. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 2537335 commit 7dbb2e8

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

infrastructure/terraform/variables.workload.spoke.tf

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,18 @@ variable "wl_private_dns_zones" {
4040
default = []
4141
}
4242

43+
variable "enable_traffic_analytics" {
44+
description = "Enable Traffic Analytics for NSG Flow Logs"
45+
type = bool
46+
default = false
47+
}
48+
49+
variable "use_remote_spoke_gateway" {
50+
description = "Indicates whether to use the source remote spoke gateway."
51+
type = bool
52+
default = false
53+
}
54+
4355
variable "hub_managmement_logging_log_analytics_id" {
4456
description = "The Log Analytics resource ID for the hub management logging."
4557
type = string

0 commit comments

Comments
 (0)