diff --git a/modules/config-posture/main.tf b/modules/config-posture/main.tf index b09cd75..531986d 100644 --- a/modules/config-posture/main.tf +++ b/modules/config-posture/main.tf @@ -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}", diff --git a/modules/onboarding/main.tf b/modules/onboarding/main.tf index 4673edb..bf97f0e 100644 --- a/modules/onboarding/main.tf +++ b/modules/onboarding/main.tf @@ -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}",