Skip to content

Commit

Permalink
Merge pull request #96 from oracle-devrel/develop
Browse files Browse the repository at this point in the history
Automation Toolkit Release v2024.2.1
  • Loading branch information
xs2suruchi committed Apr 4, 2024
2 parents 1014bb8 + 2fb8eaf commit bc8ecc9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -677,7 +677,7 @@ def export_major_objects(inputfile, outdir, service_dir, config, signer, ct, exp
elif attach_type.upper() == "REMOTE_PEERING_CONNECTION" and rpc_execution:
#Skip RPCs to other tenancies
rpc = vnc.get_remote_peering_connection(attach_id).data
if (rpc.lifecycle_state != 'AVAILABLE' or rpc.is_cross_tenancy_peering != 'false'):
if (rpc.lifecycle_state != 'AVAILABLE' or rpc.is_cross_tenancy_peering != False):
continue

# Fetch RPC Details
Expand Down Expand Up @@ -1118,4 +1118,4 @@ def export_networking(inputfile, outdir, service_dir, config, signer, ct, export
export_drg_routetable(inputfile, outdir, service_dir_network, config1=config, signer1=signer, ct=ct, export_compartments=export_compartments, export_regions=export_regions, _tf_import_cmd=True)

# Fetch NSGs
export_nsg(inputfile, outdir, service_dir_nsg, config=config, signer=signer, ct=ct, export_compartments=export_compartments, export_regions=export_regions, _tf_import_cmd=True)
export_nsg(inputfile, outdir, service_dir_nsg, config=config, signer=signer, ct=ct, export_compartments=export_compartments, export_regions=export_regions, _tf_import_cmd=True)

0 comments on commit bc8ecc9

Please sign in to comment.