diff --git a/LESSON9a_vcn_remote_peering_with_dataguard/resource-manager/LESSON9a_vcn_remote_peering_with_dataguard.zip b/LESSON9a_vcn_remote_peering_with_dataguard/resource-manager/LESSON9a_vcn_remote_peering_with_dataguard.zip index 487cd23..8c605a5 100644 Binary files a/LESSON9a_vcn_remote_peering_with_dataguard/resource-manager/LESSON9a_vcn_remote_peering_with_dataguard.zip and b/LESSON9a_vcn_remote_peering_with_dataguard/resource-manager/LESSON9a_vcn_remote_peering_with_dataguard.zip differ diff --git a/LESSON9a_vcn_remote_peering_with_dataguard/rpc1_NEW.tf b/LESSON9a_vcn_remote_peering_with_dataguard/rpc1_NEW.tf index 7013925..1db0488 100644 --- a/LESSON9a_vcn_remote_peering_with_dataguard/rpc1_NEW.tf +++ b/LESSON9a_vcn_remote_peering_with_dataguard/rpc1_NEW.tf @@ -1,5 +1,6 @@ resource "oci_core_drg" "FoggyKitchenDRG1" { depends_on = [oci_identity_policy.FoggyKitchenRequestorPolicy, oci_identity_user_group_membership.FoggyKitchenRequestorUserGroupMembership] +# depends_on = [oci_identity_policy.FoggyKitchenRequestorPolicy] provider = oci.requestor display_name = "FoggyKitchenDRG1" compartment_id = oci_identity_compartment.FoggyKitchenCompartment.id @@ -7,6 +8,7 @@ resource "oci_core_drg" "FoggyKitchenDRG1" { resource "oci_core_drg_attachment" "FoggyKitchenDRG1Attachment" { depends_on = [oci_identity_policy.FoggyKitchenRequestorPolicy, oci_identity_user_group_membership.FoggyKitchenRequestorUserGroupMembership] +# depends_on = [oci_identity_policy.FoggyKitchenRequestorPolicy] provider = oci.requestor drg_id = oci_core_drg.FoggyKitchenDRG1.id vcn_id = oci_core_virtual_network.FoggyKitchenVCN.id @@ -14,6 +16,7 @@ resource "oci_core_drg_attachment" "FoggyKitchenDRG1Attachment" { resource "oci_core_remote_peering_connection" "FoggyKitchenRPC1" { depends_on = [oci_identity_policy.FoggyKitchenRequestorPolicy, oci_identity_user_group_membership.FoggyKitchenRequestorUserGroupMembership] +# depends_on = [oci_identity_policy.FoggyKitchenRequestorPolicy] provider = oci.requestor compartment_id = oci_identity_compartment.FoggyKitchenCompartment.id drg_id = oci_core_drg.FoggyKitchenDRG1.id diff --git a/LESSON9a_vcn_remote_peering_with_dataguard/rpc2_NEW.tf b/LESSON9a_vcn_remote_peering_with_dataguard/rpc2_NEW.tf index d70bd70..4978e6d 100644 --- a/LESSON9a_vcn_remote_peering_with_dataguard/rpc2_NEW.tf +++ b/LESSON9a_vcn_remote_peering_with_dataguard/rpc2_NEW.tf @@ -1,5 +1,6 @@ resource "oci_core_drg" "FoggyKitchenDRG2" { depends_on = [oci_identity_policy.FoggyKitchenAcceptorPolicy, oci_identity_user_group_membership.FoggyKitchenAcceptorUserGroupMembership] +# depends_on = [oci_identity_policy.FoggyKitchenAcceptorPolicy] provider = oci.acceptor display_name = "FoggyKitchenDRG2" compartment_id = oci_identity_compartment.ExternalCompartment.id @@ -7,6 +8,7 @@ resource "oci_core_drg" "FoggyKitchenDRG2" { resource "oci_core_drg_attachment" "FoggyKitchenDRG2Attachment" { depends_on = [oci_identity_policy.FoggyKitchenAcceptorPolicy, oci_identity_user_group_membership.FoggyKitchenAcceptorUserGroupMembership] +# depends_on = [oci_identity_policy.FoggyKitchenAcceptorPolicy] provider = oci.acceptor drg_id = oci_core_drg.FoggyKitchenDRG2.id vcn_id = oci_core_virtual_network.FoggyKitchenVCN2.id @@ -14,6 +16,7 @@ resource "oci_core_drg_attachment" "FoggyKitchenDRG2Attachment" { resource "oci_core_remote_peering_connection" "FoggyKitchenRPC2" { depends_on = [oci_identity_policy.FoggyKitchenAcceptorPolicy, oci_identity_user_group_membership.FoggyKitchenAcceptorUserGroupMembership] +# depends_on = [oci_identity_policy.FoggyKitchenAcceptorPolicy] provider = oci.acceptor compartment_id = oci_identity_compartment.ExternalCompartment.id drg_id = oci_core_drg.FoggyKitchenDRG2.id