qontract-reconcile 0.10.1rc631__py3-none-any.whl → 0.10.1rc632__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.1rc631
3
+ Version: 0.10.1rc632
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
@@ -610,7 +610,7 @@ reconcile/utils/state.py,sha256=zjsprjbOb0WddzmAvh8ACqAt0fcayrX2YPfz7qceRWw,1609
610
610
  reconcile/utils/structs.py,sha256=LcbLEg8WxfRqM6nW7NhcWN0YeqF7SQzxOgntmLs1SgY,352
611
611
  reconcile/utils/template.py,sha256=wTvRU4AnAV_o042tD4Mwls2dwWMuk7MKnde3MaCjaYg,331
612
612
  reconcile/utils/terraform_client.py,sha256=6hcC0ibXkiFBn-0krVl11Bz29QcW2RI7l40pmTRrRfg,32092
613
- reconcile/utils/terrascript_aws_client.py,sha256=1d3Z-MLBHIV9iiM8cRfuFqZasUfeSAv70t6cLVFYfIc,269788
613
+ reconcile/utils/terrascript_aws_client.py,sha256=AqRnkEBQ3Zw5PS62vq2rUWUQrq3zyud3E3ilfIM2Hgc,270697
614
614
  reconcile/utils/three_way_diff_strategy.py,sha256=nyqeQsLCoPI6e16k2CF3b9KNgQLU-rPf5RtfdUfVMwE,4468
615
615
  reconcile/utils/throughput.py,sha256=iP4UWAe2LVhDo69mPPmgo9nQ7RxHD6_GS8MZe-aSiuM,344
616
616
  reconcile/utils/unleash.py,sha256=1D56CsZfE3ShDtN3IErE1T2eeIwNmxhK-yYbCotJ99E,3601
@@ -714,8 +714,8 @@ tools/test/test_app_interface_metrics_exporter.py,sha256=SX7qL3D1SIRKFo95FoQztvf
714
714
  tools/test/test_qontract_cli.py,sha256=OvalpVRfY4pNmpMaWHHYqBjV68b1eGQjX8SCyTAXb1w,3501
715
715
  tools/test/test_sd_app_sre_alert_report.py,sha256=v363r9zM7__0kR5K6mvJoGFcM9BvE33fWAayrqkpojA,2116
716
716
  tools/test/test_sre_checkpoints.py,sha256=SKqPPTl9ua0RFdSSofnoQX-JZE6dFLO3LRhfQzqtfh8,2607
717
- qontract_reconcile-0.10.1rc631.dist-info/METADATA,sha256=OWGuEMSw2QnQG3DZfTAKXDxDHSusMq6-eUFyPgw7KGM,2382
718
- qontract_reconcile-0.10.1rc631.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
719
- qontract_reconcile-0.10.1rc631.dist-info/entry_points.txt,sha256=rIxI5zWtHNlfpDeq1a7pZXAPoqf7HG32KMTN3MeWK_8,429
720
- qontract_reconcile-0.10.1rc631.dist-info/top_level.txt,sha256=l5ISPoXzt0SdR4jVdkfa7RPSKNc8zAHYWAnR-Dw8Ey8,24
721
- qontract_reconcile-0.10.1rc631.dist-info/RECORD,,
717
+ qontract_reconcile-0.10.1rc632.dist-info/METADATA,sha256=TvO8-ERDzrKsAKJGJfAHNBskE8JP8ORvWGTk31i9NB8,2382
718
+ qontract_reconcile-0.10.1rc632.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
719
+ qontract_reconcile-0.10.1rc632.dist-info/entry_points.txt,sha256=rIxI5zWtHNlfpDeq1a7pZXAPoqf7HG32KMTN3MeWK_8,429
720
+ qontract_reconcile-0.10.1rc632.dist-info/top_level.txt,sha256=l5ISPoXzt0SdR4jVdkfa7RPSKNc8zAHYWAnR-Dw8Ey8,24
721
+ qontract_reconcile-0.10.1rc632.dist-info/RECORD,,
@@ -427,7 +427,28 @@ class TerrascriptClient: # pylint: disable=too-many-public-methods
427
427
  ts += Terraform(
428
428
  backend=TerrascriptClient.state_bucket_for_account(
429
429
  self.integration, name, config
430
- )
430
+ ),
431
+ required_providers={
432
+ "aws": {
433
+ "source": "hashicorp/aws",
434
+ "version": self.versions.get(name),
435
+ },
436
+ # the time provider can be removed if all AWS accounts
437
+ # upgrade to a provider version with this bug fix
438
+ # https://github.com/hashicorp/terraform-provider-aws/pull/20926
439
+ "time": {
440
+ "source": "hashicorp/time",
441
+ "version": "0.9.1",
442
+ },
443
+ "random": {
444
+ "source": "hashicorp/random",
445
+ "version": "3.4.3",
446
+ },
447
+ "template": {
448
+ "source": "hashicorp/template",
449
+ "version": "2.2.0",
450
+ },
451
+ },
431
452
  )
432
453
  tss[name] = ts
433
454
  locks[name] = Lock()