-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathprovider.tf
46 lines (40 loc) · 1022 Bytes
/
provider.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
terraform {
required_version = ">= 0.13.0"
required_providers {
universe = {
source = "github.com/operatorequals/universe"
version = ">=0.1.0"
}
}
}
# KIBANA_PASSWORD is set from the Environment
provider "universe" {
alias = "detection_rule"
executor = "python3"
script = "/universe_scripts/elastic_siem/detection_rule.py"
id_key = "rule_id"
}
provider "universe" {
alias = "exception_item"
executor = "python3"
script = "/universe_scripts/elastic_siem/exception_item.py"
id_key = "item_id"
}
provider "universe" {
alias = "exception_container"
executor = "python3"
script = "/universe_scripts/elastic_siem/exception_container.py"
id_key = "list_id"
}
provider "universe" {
alias = "list_container"
executor = "python3"
script = "/universe_scripts/elastic_siem/list_container.py"
id_key = "id"
}
provider "universe" {
alias = "list_item"
executor = "python3"
script = "/universe_scripts/elastic_siem/list_item.py"
id_key = "id"
}