Skip to content

Commit

Permalink
Automation Toolkit Release v2024.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
xs2suruchi committed Apr 4, 2024
1 parent d1fe8b7 commit 2fb8eaf
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 2fb8eaf

Please sign in to comment.