You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: solutions/fully-configurable/variables.tf
+20Lines changed: 20 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -583,3 +583,23 @@ variable "cbr_rules" {
583
583
description="(Optional, list) List of context-based restrictions rules to create. [Learn more](https://github.com/terraform-ibm-modules/terraform-ibm-icd-elasticsearch/tree/main/solutions/fully-configurable/DA-cbr_rules.md)"
584
584
default=[]
585
585
}
586
+
587
+
variable"cbr_code_engine_kibana_project_rules" {
588
+
type=list(object({
589
+
description =string
590
+
account_id =string
591
+
rule_contexts =list(object({
592
+
attributes =optional(list(object({
593
+
name =string
594
+
value =string
595
+
}))) }))
596
+
enforcement_mode =string
597
+
operations =optional(list(object({
598
+
api_types =list(object({
599
+
api_type_id =string
600
+
}))
601
+
})))
602
+
}))
603
+
description="(Optional, list) List of context-based restrictions rules to create for the Kibana dashboard and it is only applicable if `enable_kibana_dashboard` is true. [Learn more](https://github.com/terraform-ibm-modules/terraform-ibm-icd-elasticsearch/tree/main/solutions/standard/DA-cbr_rules.md)"
0 commit comments