File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ resource "sysdig_secure_cloud_auth_account_feature" "identity_entitlement_advanc
4242 type = " FEATURE_SECURE_IDENTITY_ENTITLEMENT"
4343 enabled = true
4444 components = concat (
45- sysdig_secure_cloud_auth_account_feature. identity_entitlement_basic . components ,
45+ tolist ( sysdig_secure_cloud_auth_account_feature. identity_entitlement_basic . components ) ,
4646 [module . cloud-logs . cloud_logs_component_id ]
4747 )
4848 depends_on = [module . cloud-logs ]
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ resource "sysdig_secure_cloud_auth_account_feature" "identity_entitlement_advanc
2222 account_id = module. onboarding . sysdig_secure_account_id
2323 type = " FEATURE_SECURE_IDENTITY_ENTITLEMENT"
2424 enabled = true
25- components = concat (sysdig_secure_cloud_auth_account_feature. identity_entitlement_basic . components , [module . cloud-logs . cloud_logs_component_id ])
25+ components = concat (tolist ( sysdig_secure_cloud_auth_account_feature. identity_entitlement_basic . components ) , [module . cloud-logs . cloud_logs_component_id ])
2626 depends_on = [module . cloud-logs ]
2727 flags = { " CIEM_FEATURE_MODE" : " advanced" }
2828
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ resource "sysdig_secure_cloud_auth_account_feature" "identity_entitlement_advanc
2828 account_id = module. onboarding . sysdig_secure_account_id
2929 type = " FEATURE_SECURE_IDENTITY_ENTITLEMENT"
3030 enabled = true
31- components = concat (sysdig_secure_cloud_auth_account_feature. identity_entitlement_basic . components , [module . event-bridge . event_bridge_component_id ])
31+ components = concat (tolist ( sysdig_secure_cloud_auth_account_feature. identity_entitlement_basic . components ) , [module . event-bridge . event_bridge_component_id ])
3232 depends_on = [module . event-bridge ]
3333 flags = { " CIEM_FEATURE_MODE" : " advanced" }
3434
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ resource "sysdig_secure_cloud_auth_account_feature" "identity_entitlement_advanc
2929 account_id = module. onboarding . sysdig_secure_account_id
3030 type = " FEATURE_SECURE_IDENTITY_ENTITLEMENT"
3131 enabled = true
32- components = concat (sysdig_secure_cloud_auth_account_feature. identity_entitlement_basic . components , [module . event-bridge . event_bridge_component_id ])
32+ components = concat (tolist ( sysdig_secure_cloud_auth_account_feature. identity_entitlement_basic . components ) , [module . event-bridge . event_bridge_component_id ])
3333 depends_on = [module . event-bridge ]
3434 flags = { " CIEM_FEATURE_MODE" : " advanced" }
3535
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ resource "sysdig_secure_cloud_auth_account_feature" "identity_entitlement_advanc
4242 type = " FEATURE_SECURE_IDENTITY_ENTITLEMENT"
4343 enabled = true
4444 components = concat (
45- sysdig_secure_cloud_auth_account_feature. identity_entitlement_basic . components ,
45+ tolist ( sysdig_secure_cloud_auth_account_feature. identity_entitlement_basic . components ) ,
4646 [module . cloud-logs . cloud_logs_component_id ]
4747 )
4848 depends_on = [
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ resource "sysdig_secure_cloud_auth_account_feature" "identity_entitlement_advanc
2222 account_id = module. onboarding . sysdig_secure_account_id
2323 type = " FEATURE_SECURE_IDENTITY_ENTITLEMENT"
2424 enabled = true
25- components = concat (sysdig_secure_cloud_auth_account_feature. identity_entitlement_basic . components , [module . cloud-logs . cloud_logs_component_id ])
25+ components = concat (tolist ( sysdig_secure_cloud_auth_account_feature. identity_entitlement_basic . components ) , [module . cloud-logs . cloud_logs_component_id ])
2626 depends_on = [
2727 module . cloud-logs ,
2828 module . cloud-logs . post_ciem_basic_delay
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ resource "sysdig_secure_cloud_auth_account_feature" "identity_entitlement_advanc
2121 account_id = module. onboarding . sysdig_secure_account_id
2222 type = " FEATURE_SECURE_IDENTITY_ENTITLEMENT"
2323 enabled = true
24- components = concat (sysdig_secure_cloud_auth_account_feature. identity_entitlement_basic . components , [module . event-bridge . event_bridge_component_id ])
24+ components = concat (tolist ( sysdig_secure_cloud_auth_account_feature. identity_entitlement_basic . components ) , [module . event-bridge . event_bridge_component_id ])
2525 depends_on = [
2626 module . event-bridge ,
2727 module . event-bridge . post_ciem_basic_delay
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ resource "sysdig_secure_cloud_auth_account_feature" "identity_entitlement_advanc
2222 account_id = module. onboarding . sysdig_secure_account_id
2323 type = " FEATURE_SECURE_IDENTITY_ENTITLEMENT"
2424 enabled = true
25- components = concat (sysdig_secure_cloud_auth_account_feature. identity_entitlement_basic . components , [module . event-bridge . event_bridge_component_id ])
25+ components = concat (tolist ( sysdig_secure_cloud_auth_account_feature. identity_entitlement_basic . components ) , [module . event-bridge . event_bridge_component_id ])
2626 depends_on = [
2727 module . event-bridge ,
2828 module . event-bridge . post_ciem_basic_delay
You can’t perform that action at this time.
0 commit comments