diff --git a/test/examples/organization/agentless_scanning.tf b/test/examples/organization/agentless_scanning.tf index 6e9e165..ae690d8 100644 --- a/test/examples/organization/agentless_scanning.tf +++ b/test/examples/organization/agentless_scanning.tf @@ -16,5 +16,5 @@ resource "sysdig_secure_cloud_auth_account_feature" "agentless_scanning" { type = "FEATURE_SECURE_AGENTLESS_SCANNING" enabled = true components = [module.agentless-scanning.scanning_role_component_id, module.agentless-scanning.crypto_key_component_id] - depends_on = [ module.agentless-scanning ] + depends_on = [module.agentless-scanning] } \ No newline at end of file diff --git a/test/examples/organization/event_bridge.tf b/test/examples/organization/event_bridge.tf index 4e7f46e..bea0dd4 100644 --- a/test/examples/organization/event_bridge.tf +++ b/test/examples/organization/event_bridge.tf @@ -16,13 +16,13 @@ resource "sysdig_secure_cloud_auth_account_feature" "threat_detection" { type = "FEATURE_SECURE_THREAT_DETECTION" enabled = true components = [module.event-bridge.event_bridge_component_id] - depends_on = [ module.event-bridge ] + depends_on = [module.event-bridge] } resource "sysdig_secure_cloud_auth_account_feature" "identity_entitlement" { account_id = module.onboarding.sysdig_secure_account_id type = "FEATURE_SECURE_IDENTITY_ENTITLEMENT" enabled = true - components = [module.config-posture.config_posture_component_id, module.event-bridge.event_bridge_component_id] - depends_on = [sysdig_secure_cloud_auth_account_feature.config_posture, sysdig_secure_cloud_auth_account_feature.threat_detection] + components = [module.event-bridge.event_bridge_component_id] + depends_on = [module.event-bridge, sysdig_secure_cloud_auth_account_feature.config_posture] } \ No newline at end of file diff --git a/test/examples/single_account/agentless_scanning.tf b/test/examples/single_account/agentless_scanning.tf index 0227e4f..8f96ed8 100644 --- a/test/examples/single_account/agentless_scanning.tf +++ b/test/examples/single_account/agentless_scanning.tf @@ -14,5 +14,5 @@ resource "sysdig_secure_cloud_auth_account_feature" "agentless_scanning" { type = "FEATURE_SECURE_AGENTLESS_SCANNING" enabled = true components = [module.agentless-scanning.scanning_role_component_id, module.agentless-scanning.crypto_key_component_id] - depends_on = [ module.agentless-scanning ] + depends_on = [module.agentless-scanning] } \ No newline at end of file diff --git a/test/examples/single_account/event_bridge.tf b/test/examples/single_account/event_bridge.tf index 2545a0d..91a0418 100644 --- a/test/examples/single_account/event_bridge.tf +++ b/test/examples/single_account/event_bridge.tf @@ -14,13 +14,13 @@ resource "sysdig_secure_cloud_auth_account_feature" "threat_detection" { type = "FEATURE_SECURE_THREAT_DETECTION" enabled = true components = [module.event-bridge.event_bridge_component_id] - depends_on = [ module.event-bridge ] + depends_on = [module.event-bridge] } resource "sysdig_secure_cloud_auth_account_feature" "identity_entitlement" { account_id = module.onboarding.sysdig_secure_account_id type = "FEATURE_SECURE_IDENTITY_ENTITLEMENT" enabled = true - components = [module.config-posture.config_posture_component_id, module.event-bridge.event_bridge_component_id] - depends_on = [sysdig_secure_cloud_auth_account_feature.config_posture, sysdig_secure_cloud_auth_account_feature.threat_detection] -} + components = [module.event-bridge.event_bridge_component_id] + depends_on = [module.event-bridge, sysdig_secure_cloud_auth_account_feature.config_posture] +} \ No newline at end of file