tgwrap 0.11.6__py3-none-any.whl → 0.11.7__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
tgwrap/cli.py CHANGED
@@ -111,7 +111,7 @@ def main():
111
111
  help='Run the terragrunt command with debug logging enabled (where applicable)',
112
112
  show_default=True
113
113
  )
114
- @click.option('--dry-run', '-D', is_flag=True, default=False,
114
+ @click.option('--dry-run', is_flag=True, default=False,
115
115
  help='dry-run mode, no real actions are executed (only in combination with step-by-step mode)',
116
116
  show_default=True
117
117
  )
@@ -180,7 +180,7 @@ def run(command, verbose, debug, dry_run, no_lock, update, upgrade,
180
180
  help='Run the terragrunt command with debug logging enabled (where applicable)',
181
181
  show_default=True
182
182
  )
183
- @click.option('--dry-run', '-D', is_flag=True, default=False,
183
+ @click.option('--dry-run', is_flag=True, default=False,
184
184
  help='dry-run mode, no real actions are executed (only in combination with step-by-step mode)',
185
185
  show_default=True
186
186
  )
@@ -354,7 +354,7 @@ def show(verbose, json, working_dir, planfile_dir, terragrunt_args):
354
354
  help='Verbose printing',
355
355
  show_default=True
356
356
  )
357
- @click.option('--dry-run', '-D', is_flag=True, default=False,
357
+ @click.option('--dry-run', is_flag=True, default=False,
358
358
  help='dry-run mode, no real actions are executed',
359
359
  show_default=True
360
360
  )
@@ -483,7 +483,7 @@ def run_analyze(verbose, exclude_external_dependencies, working_dir, start_at_st
483
483
  help='Verbose printing',
484
484
  show_default=True
485
485
  )
486
- @click.option('--dry-run', '-D', is_flag=True, default=False,
486
+ @click.option('--dry-run', is_flag=True, default=False,
487
487
  help='dry-run mode, no real actions are executed',
488
488
  show_default=True
489
489
  )
@@ -523,7 +523,7 @@ def lock(module, auto_approve, verbose, dry_run, working_dir):
523
523
  help='Verbose printing',
524
524
  show_default=True
525
525
  )
526
- @click.option('--dry-run', '-D', is_flag=True, default=False,
526
+ @click.option('--dry-run', is_flag=True, default=False,
527
527
  help='dry-run mode, no real actions are executed',
528
528
  show_default=True
529
529
  )
@@ -584,7 +584,7 @@ def unlock(module, auto_approve, verbose, dry_run, working_dir):
584
584
  help='Verbose printing',
585
585
  show_default=True
586
586
  )
587
- @click.option('--dry-run', '-D', is_flag=True, default=False,
587
+ @click.option('--dry-run', is_flag=True, default=False,
588
588
  help='dry-run mode, no real actions are executed',
589
589
  show_default=True
590
590
  )
@@ -642,7 +642,7 @@ def sync(
642
642
  help='Verbose printing',
643
643
  show_default=True
644
644
  )
645
- @click.option('--dry-run', '-D', is_flag=True, default=False,
645
+ @click.option('--dry-run', is_flag=True, default=False,
646
646
  help='dry-run mode, no real actions are executed',
647
647
  show_default=True
648
648
  )
@@ -701,7 +701,7 @@ def sync_dir(
701
701
  help='Verbose printing',
702
702
  is_flag=True, default=False, show_default=True,
703
703
  )
704
- @click.option('--dry-run', '-D',
704
+ @click.option('--dry-run',
705
705
  help='dry-run mode, no real actions are executed',
706
706
  is_flag=True, default=False, show_default=True,
707
707
  )
tgwrap/main.py CHANGED
@@ -1013,6 +1013,9 @@ class TgWrap():
1013
1013
  if terragrunt_args:
1014
1014
  self.printer.verbose(f"- with additional parameters: {' '.join(terragrunt_args)}")
1015
1015
 
1016
+ if self.printer.print_verbose:
1017
+ self.show_tf_version(working_dir=working_dir)
1018
+
1016
1019
  check_for_file=self.TERRAGRUNT_FILE
1017
1020
  if working_dir:
1018
1021
  check_for_file = os.path.join(working_dir, check_for_file)
@@ -1134,6 +1137,9 @@ class TgWrap():
1134
1137
  if terragrunt_args:
1135
1138
  self.printer.verbose(f"- with additional parameters: {' '.join(terragrunt_args)}")
1136
1139
 
1140
+ if self.printer.print_verbose:
1141
+ self.show_tf_version(working_dir=working_dir)
1142
+
1137
1143
  # auto approve is only relevant with a modifying command
1138
1144
  modifying_command = (command.lower() in ['apply', 'destroy'])
1139
1145
  auto_approve = auto_approve if modifying_command else True
@@ -2074,6 +2080,22 @@ Note:
2074
2080
  self.printer.verbose(rc)
2075
2081
  self.printer.normal("Cleaned the temporary files")
2076
2082
 
2083
+ def show_tf_version(self, working_dir):
2084
+ """ Show the terraform version """
2085
+
2086
+ cmd = 'tf --version'
2087
+ print("Show the version of terraform or tofu:")
2088
+
2089
+ rc = subprocess.run(
2090
+ cmd,
2091
+ shell=True,
2092
+ check=True,
2093
+ stdout=sys.stdout if self.printer.print_verbose else subprocess.DEVNULL,
2094
+ stderr=sys.stderr if self.printer.print_verbose else subprocess.DEVNULL,
2095
+ cwd=working_dir if working_dir else None,
2096
+ )
2097
+ self.printer.verbose(rc)
2098
+
2077
2099
  def change_log(self, changelog_file, working_dir, include_nbr_of_releases):
2078
2100
  """ Generate a change log """
2079
2101
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: tgwrap
3
- Version: 0.11.6
3
+ Version: 0.11.7
4
4
  Summary: A (terragrunt) wrapper around a (terraform) wrapper around ....
5
5
  License: MIT
6
6
  Keywords: terraform,terragrunt,terrasafe,python
@@ -1,13 +1,13 @@
1
1
  tgwrap/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
2
  tgwrap/analyze.py,sha256=fuET7_L8b6rlv2qnKOYXSlIv5LArvZ39CPktCeQHo7A,10285
3
- tgwrap/cli.py,sha256=7VPowJ9DtbtbOsl5s01Vj0rsMTQuin5KhvOTbNTSQZA,33551
3
+ tgwrap/cli.py,sha256=J57Kc5fScMj8__wYp8jprV8x8edOluUGsBx-arAi6kg,33503
4
4
  tgwrap/deploy.py,sha256=gwFdRDzJWjkmEzZ8b0GUSrgvJeOKnpnJm1c6mM80OcY,10259
5
5
  tgwrap/inspector-resources-template.yml,sha256=Mos8NDzzZ3VxdXgeiVL9cmQfRcIXIHMLf79_KLwdXu8,3297
6
6
  tgwrap/inspector.py,sha256=5pW7Ex1lkKRoXY6hZGbCNmSD2iRzgMSfqi9w7gb-AcY,16990
7
- tgwrap/main.py,sha256=0SjSHx78FujmmmQ8vYK2CJn4UEDhlNRVLFCXcToce8g,95885
7
+ tgwrap/main.py,sha256=KhrClwkHWAoE6qKhxUg-cYEwWMJTCgU0Pl8iG-uV4vU,96621
8
8
  tgwrap/printer.py,sha256=frn1PARd8A28mkRCYR6ybN2x0NBULhNOutn4l2U7REY,2754
9
- tgwrap-0.11.6.dist-info/LICENSE,sha256=VT-AVxIXt3EQTC-7Hy1uPGnrDNJLqfcgLgJD78fiyx4,1065
10
- tgwrap-0.11.6.dist-info/METADATA,sha256=Y9vs2jMnGp-SB7XAVIKwr3FPLx_w9Sbnt0iPDkag5ZA,18355
11
- tgwrap-0.11.6.dist-info/WHEEL,sha256=IYZQI976HJqqOpQU6PHkJ8fb3tMNBFjg-Cn-pwAbaFM,88
12
- tgwrap-0.11.6.dist-info/entry_points.txt,sha256=H8X0PMPmd4aW7Y9iyChZ0Ug6RWGXqhRUvHH-6f6Mxz0,42
13
- tgwrap-0.11.6.dist-info/RECORD,,
9
+ tgwrap-0.11.7.dist-info/LICENSE,sha256=VT-AVxIXt3EQTC-7Hy1uPGnrDNJLqfcgLgJD78fiyx4,1065
10
+ tgwrap-0.11.7.dist-info/METADATA,sha256=xYA6-IBhqijyoPa0qhtBB-zGlggXsQ3NnsKtVvz6dwY,18355
11
+ tgwrap-0.11.7.dist-info/WHEEL,sha256=IYZQI976HJqqOpQU6PHkJ8fb3tMNBFjg-Cn-pwAbaFM,88
12
+ tgwrap-0.11.7.dist-info/entry_points.txt,sha256=H8X0PMPmd4aW7Y9iyChZ0Ug6RWGXqhRUvHH-6f6Mxz0,42
13
+ tgwrap-0.11.7.dist-info/RECORD,,