forked from terraform-ibm-modules/terraform-ibm-scc-da
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tf
46 lines (42 loc) · 3.17 KB
/
main.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
46
#######################################################################################################################
# SCC WP Agent
#######################################################################################################################
module "scc_wp_agent" {
source = "terraform-ibm-modules/scc-workload-protection-agent/ibm"
version = "1.3.1"
access_key = var.access_key
cluster_name = var.cluster_name
region = var.region
endpoint_type = var.endpoint_type
name = var.name
namespace = var.namespace
deployment_tag = var.deployment_tag
kspm_deploy = var.kspm_deploy
node_analyzer_deploy = var.node_analyzer_deploy
host_scanner_deploy = var.host_scanner_deploy
cluster_scanner_deploy = var.cluster_scanner_deploy
agent_requests_cpu = var.agent_requests_cpu
agent_requests_memory = var.agent_requests_memory
agent_limits_cpu = var.agent_limits_cpu
agent_limits_memory = var.agent_limits_memory
kspm_collector_requests_cpu = var.kspm_collector_requests_cpu
kspm_collector_requests_memory = var.kspm_collector_requests_memory
kspm_collector_limits_cpu = var.kspm_collector_limits_cpu
kspm_collector_limits_memory = var.kspm_collector_limits_memory
kspm_analyzer_requests_cpu = var.kspm_analyzer_requests_cpu
kspm_analyzer_requests_memory = var.kspm_analyzer_requests_memory
kspm_analyzer_limits_cpu = var.kspm_analyzer_limits_cpu
kspm_analyzer_limits_memory = var.kspm_analyzer_limits_memory
host_scanner_requests_cpu = var.host_scanner_requests_cpu
host_scanner_requests_memory = var.host_scanner_requests_memory
host_scanner_limits_cpu = var.host_scanner_limits_cpu
host_scanner_limits_memory = var.host_scanner_limits_memory
cluster_scanner_runtimestatusintegrator_requests_cpu = var.cluster_scanner_runtimestatusintegrator_requests_cpu
cluster_scanner_runtimestatusintegrator_requests_memory = var.cluster_scanner_runtimestatusintegrator_requests_memory
cluster_scanner_runtimestatusintegrator_limits_cpu = var.cluster_scanner_runtimestatusintegrator_limits_cpu
cluster_scanner_runtimestatusintegrator_limits_memory = var.cluster_scanner_runtimestatusintegrator_limits_memory
cluster_scanner_imagesbomextractor_requests_cpu = var.cluster_scanner_imagesbomextractor_requests_cpu
cluster_scanner_imagesbomextractor_requests_memory = var.cluster_scanner_imagesbomextractor_requests_memory
cluster_scanner_imagesbomextractor_limits_cpu = var.cluster_scanner_imagesbomextractor_limits_cpu
cluster_scanner_imagesbomextractor_limits_memory = var.cluster_scanner_imagesbomextractor_limits_memory
}