-
Notifications
You must be signed in to change notification settings - Fork 5
SSPROD-55652 - feat: add support for include/exclude params #62
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
jose-pablo-camacho
merged 5 commits into
master
from
SSPROD-55652/include-exclude-support
Apr 24, 2025
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
e2e70e7
SSPROD-55652 - feat: add support for include/exclude params
jose-pablo-camacho 86b1dc6
SSPROD-55652 - feat: add support for include/exclude params
jose-pablo-camacho 9cb623b
SSPROD-55652 - feat: add support for include/exclude params
jose-pablo-camacho dbb9489
SSPROD-55652 - feat: add support for include/exclude params
jose-pablo-camacho a4641ff
SSPROD-55652 - feat: add support for include/exclude params
jose-pablo-camacho File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,34 @@ | ||
| locals { | ||
| # check if both old and new include/exclude org parameters are used, we fail early | ||
| both_org_configuration_params = var.is_organizational && length(var.management_group_ids) > 0 && ( | ||
| length(var.include_folders) > 0 || | ||
| length(var.exclude_folders) > 0 || | ||
| length(var.include_projects) > 0 || | ||
| length(var.exclude_projects) > 0 | ||
| ) | ||
|
|
||
| # check if old management_group_ids parameter is provided, for backwards compatibility we will always give preference to it | ||
| check_old_management_group_ids_param = var.is_organizational && length(var.management_group_ids) > 0 | ||
|
|
||
| # fetch the GCP root org | ||
| root_org = var.is_organizational ? [data.google_organization.org[0].name] : [] | ||
| } | ||
|
|
||
| check "validate_org_configuration_params" { | ||
| assert { | ||
| condition = length(var.management_group_ids) == 0 # if this condition is false we throw warning | ||
| error_message = <<-EOT | ||
| WARNING: TO BE DEPRECATED 'management_group_ids': Please work with Sysdig to migrate your Terraform installs to use 'include_folders' instead. | ||
| EOT | ||
| } | ||
|
|
||
| assert { | ||
| condition = !local.both_org_configuration_params # if this condition is false we throw error | ||
| error_message = <<-EOT | ||
| ERROR: If both management_group_ids and include_folders/exclude_folders/include_projects/exclude_projects variables are populated, | ||
| ONLY management_group_ids will be considered. Please use only one of the two methods. | ||
|
|
||
| Note: management_group_ids is going to be DEPRECATED soon, please work with Sysdig to migrate your Terraform installs. | ||
| EOT | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.