qontract-reconcile 0.10.1rc682__py3-none-any.whl → 0.10.1rc683__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: qontract-reconcile
3
- Version: 0.10.1rc682
3
+ Version: 0.10.1rc683
4
4
  Summary: Collection of tools to reconcile services with their desired state as defined in the app-interface DB.
5
5
  Home-page: https://github.com/app-sre/qontract-reconcile
6
6
  Author: Red Hat App-SRE Team
@@ -616,7 +616,7 @@ reconcile/utils/state.py,sha256=zjsprjbOb0WddzmAvh8ACqAt0fcayrX2YPfz7qceRWw,1609
616
616
  reconcile/utils/structs.py,sha256=LcbLEg8WxfRqM6nW7NhcWN0YeqF7SQzxOgntmLs1SgY,352
617
617
  reconcile/utils/template.py,sha256=wTvRU4AnAV_o042tD4Mwls2dwWMuk7MKnde3MaCjaYg,331
618
618
  reconcile/utils/terraform_client.py,sha256=mZEKpu6nbfiQd60wRkc8-5sljBTUTOgaAKnF89itMzU,32085
619
- reconcile/utils/terrascript_aws_client.py,sha256=J8JeJpM0UvPqkixF2f08WaO2q0HNeL9d_ZUAilyXTQU,272557
619
+ reconcile/utils/terrascript_aws_client.py,sha256=E5dm0ngFtsno8Zj55sBpxiwDqb6FC4D9_mEXbyOl6HA,272644
620
620
  reconcile/utils/three_way_diff_strategy.py,sha256=nyqeQsLCoPI6e16k2CF3b9KNgQLU-rPf5RtfdUfVMwE,4468
621
621
  reconcile/utils/throughput.py,sha256=iP4UWAe2LVhDo69mPPmgo9nQ7RxHD6_GS8MZe-aSiuM,344
622
622
  reconcile/utils/unleash.py,sha256=1D56CsZfE3ShDtN3IErE1T2eeIwNmxhK-yYbCotJ99E,3601
@@ -723,8 +723,8 @@ tools/test/test_app_interface_metrics_exporter.py,sha256=SX7qL3D1SIRKFo95FoQztvf
723
723
  tools/test/test_qontract_cli.py,sha256=OvalpVRfY4pNmpMaWHHYqBjV68b1eGQjX8SCyTAXb1w,3501
724
724
  tools/test/test_sd_app_sre_alert_report.py,sha256=v363r9zM7__0kR5K6mvJoGFcM9BvE33fWAayrqkpojA,2116
725
725
  tools/test/test_sre_checkpoints.py,sha256=SKqPPTl9ua0RFdSSofnoQX-JZE6dFLO3LRhfQzqtfh8,2607
726
- qontract_reconcile-0.10.1rc682.dist-info/METADATA,sha256=x5YZLAWGDFf5U18ITrRPw-jztTGB834XlA1yvfItrbI,2382
727
- qontract_reconcile-0.10.1rc682.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
728
- qontract_reconcile-0.10.1rc682.dist-info/entry_points.txt,sha256=rIxI5zWtHNlfpDeq1a7pZXAPoqf7HG32KMTN3MeWK_8,429
729
- qontract_reconcile-0.10.1rc682.dist-info/top_level.txt,sha256=l5ISPoXzt0SdR4jVdkfa7RPSKNc8zAHYWAnR-Dw8Ey8,24
730
- qontract_reconcile-0.10.1rc682.dist-info/RECORD,,
726
+ qontract_reconcile-0.10.1rc683.dist-info/METADATA,sha256=rjr_3Q9qMSguhgEXAEgT1tA2pOSZWw00JPS9i7a3kdA,2382
727
+ qontract_reconcile-0.10.1rc683.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
728
+ qontract_reconcile-0.10.1rc683.dist-info/entry_points.txt,sha256=rIxI5zWtHNlfpDeq1a7pZXAPoqf7HG32KMTN3MeWK_8,429
729
+ qontract_reconcile-0.10.1rc683.dist-info/top_level.txt,sha256=l5ISPoXzt0SdR4jVdkfa7RPSKNc8zAHYWAnR-Dw8Ey8,24
730
+ qontract_reconcile-0.10.1rc683.dist-info/RECORD,,
@@ -457,8 +457,9 @@ class TerrascriptClient: # pylint: disable=too-many-public-methods
457
457
 
458
458
  self.accounts = {a["name"]: a for a in filtered_accounts}
459
459
  self.uids = {a["name"]: a["uid"] for a in filtered_accounts}
460
+ # default_regions info is needed in populate_tf_resource_rds, even in disabled accounts
460
461
  self.default_regions = {
461
- a["name"]: a["resourcesDefaultRegion"] for a in filtered_accounts
462
+ a["name"]: a["resourcesDefaultRegion"] for a in accounts
462
463
  }
463
464
  self.partitions = {
464
465
  a["name"]: a.get("partition") or "aws" for a in filtered_accounts