tgwrap 0.9.0__py3-none-any.whl → 0.9.1__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/deploy.py CHANGED
@@ -188,10 +188,7 @@ def prepare_deploy_config(step, config, source_dir, source_config_dir, target_di
188
188
 
189
189
  printer.verbose(f'Include substack modules: {include_modules}')
190
190
 
191
- # printer.verbose(f'Found modules: {source_modules}')
192
- # include_modules = config['include_modules'] if len(config.get('include_modules')) > 0 else source_modules
193
- include_modules = substack['include_modules'] if len(substack.get('include_modules', {})) > 0 else source_modules
194
- printer.verbose(f'Include modules: {include_modules}')
191
+ include_modules = substack.get('include_modules', [])
195
192
 
196
193
  if include_modules:
197
194
  # get all directories in the substack and create an exlude_modules list from that
@@ -199,7 +196,10 @@ def prepare_deploy_config(step, config, source_dir, source_config_dir, target_di
199
196
  exclude_modules = list(set(source_directories) - set(include_modules))
200
197
  else:
201
198
  exclude_modules = substack.get('exclude_modules', [])
202
-
199
+
200
+ printer.verbose(f'Include modules: {include_modules}')
201
+ printer.verbose(f'Exclude modules: {include_modules}')
202
+
203
203
  if os.path.exists(source_path):
204
204
  deploy_actions[f'substack -> {substack["target"]}'] = {
205
205
  "source": source_path,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tgwrap
3
- Version: 0.9.0
3
+ Version: 0.9.1
4
4
  Summary: A (terragrunt) wrapper around a (terraform) wrapper around ....
5
5
  Home-page: https://gitlab.com/lunadata/tgwrap
6
6
  License: MIT
@@ -1,11 +1,11 @@
1
1
  tgwrap/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
2
  tgwrap/analyze.py,sha256=CsSaGv-be6ATy36z9X7x00gpKY59soJys2VbIzD-tmg,8726
3
3
  tgwrap/cli.py,sha256=jP7KuZzqwW2693fVsqEChzIto2T3YyPcSc9kW8ElDWI,29727
4
- tgwrap/deploy.py,sha256=giLjpN9b4TWov2w8fWyB6jinAUbupMTCUoZHVT442DM,10421
4
+ tgwrap/deploy.py,sha256=-fSk-Ix_HqrXY7KQX_L27TnFzIuhBHYv4xYJW6zRDN4,10243
5
5
  tgwrap/main.py,sha256=FqpCZ3xGD33YD3IesFMq2QI2AvSv0_4txRpnoPX19Z4,80691
6
6
  tgwrap/printer.py,sha256=dkcOCPIPB-IP6pn8QMpa06xlcqPFVaDvxnz-QEpDJV0,2663
7
- tgwrap-0.9.0.dist-info/LICENSE,sha256=VT-AVxIXt3EQTC-7Hy1uPGnrDNJLqfcgLgJD78fiyx4,1065
8
- tgwrap-0.9.0.dist-info/METADATA,sha256=IYdY5B0k1OswfcfVCbdwFOHs_itQXKq9fgbtjZPusIw,13334
9
- tgwrap-0.9.0.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
10
- tgwrap-0.9.0.dist-info/entry_points.txt,sha256=H8X0PMPmd4aW7Y9iyChZ0Ug6RWGXqhRUvHH-6f6Mxz0,42
11
- tgwrap-0.9.0.dist-info/RECORD,,
7
+ tgwrap-0.9.1.dist-info/LICENSE,sha256=VT-AVxIXt3EQTC-7Hy1uPGnrDNJLqfcgLgJD78fiyx4,1065
8
+ tgwrap-0.9.1.dist-info/METADATA,sha256=lcUDX87EGrNYGks0mkRqlrESZiJbmvAAZza6bHkYK2A,13334
9
+ tgwrap-0.9.1.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
10
+ tgwrap-0.9.1.dist-info/entry_points.txt,sha256=H8X0PMPmd4aW7Y9iyChZ0Ug6RWGXqhRUvHH-6f6Mxz0,42
11
+ tgwrap-0.9.1.dist-info/RECORD,,
File without changes