Skip to content

Commit 12e772c

Browse files
authored
Merge pull request #42 from oracle-devrel/develop
Automation Toolkit Release v10.1
2 parents 87ee0ca + 60f662a commit 12e772c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

cd3_automation_toolkit/Network/BaseNetwork/export_network_nonGreenField.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -727,7 +727,7 @@ def export_networking(inputfile, outdir, service_dir, _config, ct,export_compart
727727
export_drg_routetable(inputfile, export_compartments=export_compartments, export_regions=export_regions, service_dir=service_dir, _config=input_config_file, _tf_import_cmd=True, outdir=outdir,ct=ct)
728728

729729
# Fetch NSGs
730-
export_nsg(inputfile, export_compartments=export_compartments, export_regions=export_regions, service_dir=service_dir, _config=input_config_file, _tf_import_cmd=True, outdir=outdir,ct=ct)
730+
#export_nsg(inputfile, export_compartments=export_compartments, export_regions=export_regions, service_dir=service_dir, _config=input_config_file, _tf_import_cmd=True, outdir=outdir,ct=ct)
731731

732732

733733
if __name__=="__main__":

cd3_automation_toolkit/setUpOCI.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -197,8 +197,8 @@ def export_network():
197197
service_dir = outdir_struct['network']
198198
else:
199199
service_dir = ""
200-
options = [Option("Export all Network Components", export_networking,
201-
'Exporting Network Components'),
200+
options = [Option("Export all Network Components except NSGs", export_networking,
201+
'Exporting Network Components except NSGs'),
202202
Option("Export Network components for VCNs, DRGs and DRGRouteRulesinOCI Tabs", export_major_objects,
203203
'Exporting VCNs, DRGs and DRGRouteRulesinOCI Tabs'),
204204
Option("Export Network components for DHCP Tab", export_dhcp,
@@ -233,7 +233,7 @@ def export_networking(inputfile, outdir, service_dir, prefix,config,export_regio
233233
Option(None, Network.create_terraform_drg_route,
234234
'Processing DRGs tab for DRG Route Tables and Route Distribution creation'),
235235
Option(None, Network.modify_terraform_drg_routerules, 'Processing DRGRouteRulesinOCI Tab'),
236-
Option(None, Network.create_terraform_nsg, 'Processing NSGs Tab'),
236+
#Option(None, Network.create_terraform_nsg, 'Processing NSGs Tab'),
237237
]
238238
execute_options(options, inputfile, outdir, service_dir,prefix, non_gf_tenancy, config=config)
239239
print("\n\nExecute tf_import_commands_network_*_nonGF.sh script created under each region directory to synch TF with OCI Network objects\n")

0 commit comments

Comments
 (0)