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
{{ message }}
This repository was archived by the owner on Mar 19, 2025. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,11 +10,11 @@ This repository contains the following infrastructure as code solutions:
10
10
-[Security and Compliance Center instances solution](./solutions/instances)
11
11
-[Security and Compliance Center Workload Protection agents solution](./solutions/agents)
12
12
13
-
**NB:** These solutions are not intended to be called by one or more other modules since they contain a provider configurations, meaning they are not compatible with the `for_each`, `count`, and `depends_on` arguments. For more information see [Providers Within Modules](https://developer.hashicorp.com/terraform/language/modules/develop/providers)
13
+
:exclamation:**Important:** These solutions are not intended to be called by other modules because they contain a provider configuration and are not compatible with the `for_each`, `count`, and `depends_on` arguments. For more information see [Providers Within Modules](https://developer.hashicorp.com/terraform/language/modules/develop/providers)
14
14
15
15
<!-- Leave this section as is so that your module has a link to local development environment set up steps for contributors to follow -->
16
16
## Contributing
17
17
18
-
You can report issues and request features for this module in GitHub issues in the module repo. See [Report an issue or request a feature](https://github.com/terraform-ibm-modules/.github/blob/main/.github/SUPPORT.md).
18
+
You can report issues and request features for this module in GitHub [issues in the module](/issues) repo. See [Report an issue or request a feature](https://github.com/terraform-ibm-modules/.github/blob/main/.github/SUPPORT.md).
19
19
20
20
To set up your local development environment, see [Local development setup](https://terraform-ibm-modules.github.io/documentation/#/local-dev-setup) in the project documentation.
description="Region where Security and Compliance Workload Protection instance is created."
40
+
description="The region where the Workload Protection instance is created."
41
41
}
42
42
43
43
variable"endpoint_type" {
44
44
type=string
45
-
description="Specify the endpoint (public or private) for the Security and Compliance Center Workload Protection service."
45
+
description="The endpoint for the Workload Protection service. Possible values: `public`, `private.`"
46
46
default="private"
47
47
validation {
48
48
error_message="The specified endpoint_type can be private or public only."
@@ -52,38 +52,38 @@ variable "endpoint_type" {
52
52
53
53
variable"deployment_tag" {
54
54
type=string
55
-
description="Sets a global tag that will be included in the components. It represents the mechanism from where the components have been installed (terraform, local...)."
55
+
description="A global tag that is included in the components. The tag represents the mechanism where the components are installed. For example, `terraform` or `local`."
56
56
default="terraform"
57
57
}
58
58
59
59
variable"kspm_deploy" {
60
60
type=bool
61
-
description="Deploy Security and Compliance Workload Protection KSPM component."
61
+
description="Whether to deploy the Workload Protection Kubernetes Security Posture Management component."
62
62
default=true
63
63
}
64
64
65
65
variable"node_analyzer_deploy" {
66
66
type=bool
67
-
description="Deploy Security and Compliance Workload Protection node analyzer component."
67
+
description="Whether to deploy the Workload Protection node analyzer component."
68
68
default=true
69
69
}
70
70
71
71
variable"host_scanner_deploy" {
72
72
type=bool
73
-
description="Deploy Security and Compliance Workload Protection host scanner component. If node_analyzer_deploy false, this component will not be deployed."
73
+
description="Whether to deploy the Workload Protection host scanner component. Applies only if `node_analyzer_deploy` is true."
74
74
default=true
75
75
}
76
76
77
77
variable"cluster_scanner_deploy" {
78
78
type=bool
79
-
description="Deploy Security and Compliance Workload Protection cluster scanner component."
79
+
description="Whether to deploy the Workload Protection cluster scanner component."
80
80
default=true
81
81
}
82
82
83
83
84
84
variable"cluster_endpoint_type" {
85
85
type=string
86
-
description="Specify the endpoint (public or private) for the cluster."
86
+
description="The endpoint for the cluster. Possible values: `public`, `private.`"
87
87
default="private"
88
88
validation {
89
89
error_message="The specified cluster_endpoint_type can be private or public only."
0 commit comments