Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion modules/config-posture/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ resource "random_id" "suffix" {

resource "oci_identity_policy" "admit_cspm_policy" {
name = "AdmitSysdigSecureTenantConfigPosture-${random_id.suffix.hex}"
description = "Config Posture policy to allow read all resources in tenant/compartment"
description = "Config Posture admit policy to read all resources in tenant"
compartment_id = var.tenancy_ocid
statements = [
"Define tenancy sysdigTenancy as ${data.sysdig_secure_trusted_oracle_app.config_posture.tenancy_ocid}",
Expand Down
2 changes: 1 addition & 1 deletion modules/onboarding/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ resource "random_id" "suffix" {

resource "oci_identity_policy" "admit_onboarding_policy" {
name = "AdmitSysdigSecureTenantOnboarding-${random_id.suffix.hex}"
description = "Onboarding policy to allow inspect compartments in tenant/compartment"
description = "Onboarding admit policy to inspect all compartments in tenant"
compartment_id = var.tenancy_ocid
statements = [
"Define tenancy sysdigTenancy as ${data.sysdig_secure_trusted_oracle_app.onboarding.tenancy_ocid}",
Expand Down