Skip to content

Commit f29832b

Browse files
committed
Add exception list examples
1 parent 7b5909a commit f29832b

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
resource "elasticstack_kibana_security_exception_list" "example" {
2+
list_id = "my-detection-exception-list"
3+
name = "My Detection Exception List"
4+
description = "List of exceptions for security detection rules"
5+
type = "detection"
6+
namespace_type = "single"
7+
8+
tags = ["security", "detections"]
9+
}
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
resource "elasticstack_kibana_security_exception_list" "endpoint" {
2+
list_id = "my-endpoint-exception-list"
3+
name = "My Endpoint Exception List"
4+
description = "List of endpoint exceptions"
5+
type = "endpoint"
6+
namespace_type = "agnostic"
7+
8+
os_types = ["linux", "windows", "macos"]
9+
tags = ["endpoint", "security"]
10+
}

0 commit comments

Comments
 (0)