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
Copy file name to clipboardExpand all lines: terraform/modules/policies/locals.tf
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@ locals {
21
21
secrets_policy_statement2=(var.is_idcs_selected&& var.idcs_client_secret_id!="") ?"Allow dynamic-group ${oci_identity_dynamic_group.wlsc_instance_principal_group.name} to read secret-bundles in tenancy where target.secret.id = '${var.idcs_client_secret_id}'":""
22
22
atp_policy_statement1=(var.atp_db.is_atp&& var.atp_db.password_id!="") ?"Allow dynamic-group ${oci_identity_dynamic_group.wlsc_instance_principal_group.name} to read secret-bundles in tenancy where target.secret.id = '${var.atp_db.password_id}'":""
23
23
# This policy with "use autonomous-transaction-processing-family" verb is needed to download ATP db wallet
24
-
atp_policy_statement2=(var.atp_db.is_atp&& var.atp_db.compartment_id!="") ?"Allow dynamic-group ${oci_identity_dynamic_group.wlsc_instance_principal_group.name} to use autonomous-transaction-processing-family in compartment id ${var.atp_db.compartment_id}":""
24
+
atp_policy_statement2=(var.atp_db.is_atp&& var.atp_db.compartment_id!="") ?"Allow dynamic-group ${oci_identity_dynamic_group.wlsc_instance_principal_group.name} to use autonomous-transaction-processing-family in compartment id ${var.atp_db.compartment_id}":""
25
25
# This policy with "manage network-security-groups" verb is needed to add security rule in the ATP db (with private endpoint) NSG in the ATP db VCN
26
26
atp_policy_statement3=(var.atp_db.is_atp_with_private_endpoints&& var.atp_db.existing_vcn_add_seclist&& var.atp_db.network_compartment_id!="") ?"Allow dynamic-group ${oci_identity_dynamic_group.wlsc_instance_principal_group.name} to manage network-security-groups in compartment id ${var.atp_db.network_compartment_id} where request.operation = 'AddNetworkSecurityGroupSecurityRules'":""
27
27
oci_db_policy_statement1=var.oci_db.password_id!=""?"Allow dynamic-group ${oci_identity_dynamic_group.wlsc_instance_principal_group.name} to read secret-bundles in tenancy where target.secret.id = '${var.oci_db.password_id}'":""
0 commit comments