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
Add migration support for Orgs and bump sysdig versions (#46)
* Add migration support for Orgs and bump sysdig versions
Change summary:
----------------
- To keep things backwards compatible for supporting migration
from old variable to new variables for org onboarding, adding
the necessary support.
- Also, bumping up sysdig provider revisions across all modules to 1.51
* Fixes after testing
Fix summary:
------------
1. Updated error and warnings for deprecated
2. Polished the messages
3. Downgraded the sysdig provider version back to 1.48
4. Added provision to not recreate stacksets
5. If old param is present (ONLY or with include/exclude), we throw DEPRECATED warning &
indicate we give preference to old param to maintain backwards compatibility.
* Fix test samples
* Fix event-bridge README
* Set include/exclude fields only when org_unit_ids is not present
# As per https://docs.aws.amazon.com/organizations/latest/userguide/orgs_getting-started_concepts.html#organization-structure, there can be only one root
Copy file name to clipboardExpand all lines: modules/agentless-scanning/variables.tf
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -32,8 +32,9 @@ variable "is_organizational" {
32
32
33
33
variable"org_units" {
34
34
description=<<-EOF
35
-
DEPRECATED: Defaults to `[]`, use `include_ouids` instead.
36
-
When set, list of Organization Unit IDs to setup Agentless Scanning. By default, Agentless Scanning will be setup in all accounts within the Organization."
35
+
TO BE DEPRECATED: Please migrate to using `include_ouids` instead.
36
+
When set, list of Organization Unit IDs to setup Agentless Scanning. By default, Agentless Scanning will be setup in all accounts within the Organization.
37
+
This field is ignored if `is_organizational = false`
# As per https://docs.aws.amazon.com/organizations/latest/userguide/orgs_getting-started_concepts.html#organization-structure, there can be only one root
0 commit comments