Skip to content

Commit 2bdccf7

Browse files
fix: add missing property in dynamic_variables (#213)
1 parent 99a35e6 commit 2bdccf7

File tree

1 file changed

+14
-12
lines changed

1 file changed

+14
-12
lines changed

modules/integrations/splunk_o11y_conf_shared/variables.tf

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -33,24 +33,26 @@ variable "dashboard_variables" {
3333
runner_k8s = object({
3434
tenant_names = list(string)
3535
dynamic_variables = list(object({
36-
property = string
37-
alias = string
38-
description = string
39-
values = list(string)
40-
value_required = bool
41-
values_suggested = list(string)
36+
property = string
37+
alias = string
38+
description = string
39+
values = list(string)
40+
value_required = bool
41+
values_suggested = list(string)
42+
restricted_suggestions = bool
4243
}
4344
))
4445
})
4546
runner_ec2 = object({
4647
tenant_names = list(string)
4748
dynamic_variables = list(object({
48-
property = string
49-
alias = string
50-
description = string
51-
values = list(string)
52-
value_required = bool
53-
values_suggested = list(string)
49+
property = string
50+
alias = string
51+
description = string
52+
values = list(string)
53+
value_required = bool
54+
values_suggested = list(string)
55+
restricted_suggestions = bool
5456
}
5557
))
5658
})

0 commit comments

Comments
 (0)