Skip to content

Commit dbb9489

Browse files
SSPROD-55652 - feat: add support for include/exclude params
1 parent 9cb623b commit dbb9489

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

modules/onboarding/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,10 @@ No modules.
6060
| <a name="input_project_id"></a> [project\_id](#input\_project\_id) | (Required) Target Project identifier provided by the customer | `string` | n/a | yes |
6161
| <a name="input_suffix"></a> [suffix](#input\_suffix) | (Optional) Suffix to uniquely identify resources during multiple installs. If not provided, random value is autogenerated | `string` | `null` | no |
6262
| <a name="input_management_group_ids"></a> [suffix](#input\_management\_group\_ids) | TO BE DEPRECATED: Please work with Sysdig to migrate to using `include_folders` instead.<br>List of management group ids w.r.t an org install. If not provided, set to empty by default | `set(string)` | `[]` | no |
63-
| <a name="input_include_folders"></a> [suffix](#input\_include\_folders) | folders to include for organization | `set(string)` | `[]` | no |
64-
| <a name="input_exclude_folders"></a> [suffix](#input\_exclude\_folders) | folders to exclude for organization | `set(string)` | `[]` | no |
65-
| <a name="input_include_projects"></a> [suffix](#input\_include\_projects) | projects to include for organization | `set(string)` | `[]` | no |
66-
| <a name="input_exclude_projects"></a> [suffix](#input\_exclude\_projects) | projects to exclude for organization | `set(string)` | `[]` | no |
63+
| <a name="input_include_folders"></a> [suffix](#input\_include\_folders) | folders to include for organization in the format 'folders/{folder_id}'. i.e: folders/123456789012 | `set(string)` | `[]` | no |
64+
| <a name="input_exclude_folders"></a> [suffix](#input\_exclude\_folders) | folders to exclude for organization in the format 'folders/{folder_id}'. i.e: folders/123456789012 | `set(string)` | `[]` | no |
65+
| <a name="input_include_projects"></a> [suffix](#input\_include\_projects) | projects to include for organization. i.e: my-project-id | `set(string)` | `[]` | no |
66+
| <a name="input_exclude_projects"></a> [suffix](#input\_exclude\_projects) | projects to exclude for organization. i.e: my-project-id | `set(string)` | `[]` | no |
6767

6868

6969

modules/onboarding/variables.tf

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,25 +32,25 @@ variable "suffix" {
3232
}
3333

3434
variable "include_folders" {
35-
description = "(Optional) folders to include for organization"
35+
description = "(Optional) folders to include for organization in the format 'folders/{folder_id}' i.e: folders/123456789012"
3636
type = set(string)
3737
default = []
3838
}
3939

4040
variable "exclude_folders" {
41-
description = "(Optional) folders to exclude for organization"
41+
description = "(Optional) folders to exclude for organization in the format 'folders/{folder_id}' i.e: folders/123456789012"
4242
type = set(string)
4343
default = []
4444
}
4545

4646
variable "include_projects" {
47-
description = "(Optional) projects to include for organization"
47+
description = "(Optional) projects id to include for organization i.e: my-project-id"
4848
type = set(string)
4949
default = []
5050
}
5151

5252
variable "exclude_projects" {
53-
description = "(Optional) projects to exclude for organization"
53+
description = "(Optional) projects id to exclude for organization i.e: my-project-id"
5454
type = set(string)
5555
default = []
5656
}

0 commit comments

Comments
 (0)