tgwrap 0.11.2__tar.gz → 0.11.3__tar.gz

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.
@@ -1,8 +1,7 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.3
2
2
  Name: tgwrap
3
- Version: 0.11.2
3
+ Version: 0.11.3
4
4
  Summary: A (terragrunt) wrapper around a (terraform) wrapper around ....
5
- Home-page: https://gitlab.com/lunadata/tgwrap
6
5
  License: MIT
7
6
  Keywords: terraform,terragrunt,terrasafe,python
8
7
  Author: Gerco Grandia
@@ -26,6 +25,7 @@ Requires-Dist: python-hcl2 (>=4.3.2,<5.0.0)
26
25
  Requires-Dist: pyyaml (>=6.0)
27
26
  Requires-Dist: terrasafe (>=0.5.1,<0.6.0)
28
27
  Project-URL: Documentation, https://gitlab.com/lunadata/tgwrap/
28
+ Project-URL: Homepage, https://gitlab.com/lunadata/tgwrap
29
29
  Project-URL: Repository, https://gitlab.com/lunadata/tgwrap
30
30
  Description-Content-Type: text/markdown
31
31
 
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "tgwrap"
3
- version = "0.11.2"
3
+ version = "0.11.3"
4
4
  description = "A (terragrunt) wrapper around a (terraform) wrapper around ...."
5
5
  authors = ["Gerco Grandia <gerco.grandia@4synergy.nl>", "Pascal Alma <pascal.alma@4synergy.nl>"]
6
6
  license = "MIT"
@@ -34,6 +34,7 @@ def run_analyze(config, data, ignore_attributes, verbose=False):
34
34
 
35
35
  detected_changes = get_resource_actions(data)
36
36
 
37
+ ignorable_updates = []
37
38
  if config:
38
39
  ts_default_levels = {
39
40
  'low': 'ignore_deletion',
@@ -44,7 +45,6 @@ def run_analyze(config, data, ignore_attributes, verbose=False):
44
45
  for criticallity, ts_level in ts_default_levels.items():
45
46
  ts_config[ts_level] = [f"*{key}*" for key, value in config[criticallity].items() if value.get('terrasafe_level', ts_level) == ts_level]
46
47
 
47
- ignorable_updates = []
48
48
  for resource in detected_changes['updates']:
49
49
  before = resource['change']['before']
50
50
  after = resource['change']['after']
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes