Skip to content
This repository was archived by the owner on Mar 19, 2025. It is now read-only.

Commit 415e2f7

Browse files
authored
fix: make updates to WP agent DA input variables (#120)
1 parent de6e82a commit 415e2f7

File tree

2 files changed

+73
-7
lines changed

2 files changed

+73
-7
lines changed

ibm_catalog.json

Lines changed: 72 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -333,22 +333,88 @@
333333
"key": "ibmcloud_api_key"
334334
},
335335
{
336-
"key": "scc_workload_protection_agent_agent_name"
336+
"key": "name"
337337
},
338338
{
339-
"key": "scc_workload_protection_agent_agent_namespace"
339+
"key": "namespace"
340340
},
341341
{
342-
"key": "scc_workload_protection_agent_cluster_name"
342+
"key": "cluster_name"
343343
},
344344
{
345-
"key": "scc_workload_protection_agent_access_key"
345+
"key": "access_key"
346346
},
347347
{
348-
"key": "scc_workload_protection_instance_region"
348+
"key": "region",
349+
"options": [
350+
{
351+
"displayname": "Dallas (us-south)",
352+
"value": "us-south"
353+
},
354+
{
355+
"displayname": "Frankfurt (eu-de)",
356+
"value": "eu-de"
357+
},
358+
{
359+
"displayname": "London (eu-gb)",
360+
"value": "eu-gb"
361+
},
362+
{
363+
"displayname": "Osaka (jp-osa)",
364+
"value": "jp-osa"
365+
},
366+
{
367+
"displayname": "Sao Paulo (br-sao)",
368+
"value": "br-sao"
369+
},
370+
{
371+
"displayname": "Sydney (au-syd)",
372+
"value": "au-syd"
373+
},
374+
{
375+
"displayname": "Tokyo (jp-tok)",
376+
"value": "jp-tok"
377+
},
378+
{
379+
"displayname": "Toronto (ca-tor)",
380+
"value": "ca-tor"
381+
},
382+
{
383+
"displayname": "Washington (us-east)",
384+
"value": "us-east"
385+
}
386+
]
387+
},
388+
{
389+
"key": "endpoint_type",
390+
"options": [
391+
{
392+
"displayname": "Public",
393+
"value": "public"
394+
},
395+
{
396+
"displayname": "Private",
397+
"value": "private"
398+
}
399+
]
400+
},
401+
{
402+
"key": "deployment_tag"
403+
},
404+
{
405+
"key": "kspm_deploy"
406+
},
407+
{
408+
"key": "node_analyzer_deploy"
409+
},
410+
{
411+
"key": "host_scanner_deploy"
412+
},
413+
{
414+
"key": "cluster_scanner_deploy"
349415
},
350416
{
351-
"key": "scc_workload_protection_agent_endpoint_type",
417+
"key": "cluster_endpoint_type",
352418
"options": [
353419
{
354420
"displayname": "Public",

solutions/agents/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ variable "access_key" {
3737

3838
variable "region" {
3939
type = string
40-
description = "Region where Security and Compliance Workload Protection agent is created."
40+
description = "Region where Security and Compliance Workload Protection instance is created."
4141
}
4242

4343
variable "endpoint_type" {

0 commit comments

Comments
 (0)