qontract-reconcile 0.10.1rc450__py3-none-any.whl → 0.10.1rc451__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.
- {qontract_reconcile-0.10.1rc450.dist-info → qontract_reconcile-0.10.1rc451.dist-info}/METADATA +1 -1
- {qontract_reconcile-0.10.1rc450.dist-info → qontract_reconcile-0.10.1rc451.dist-info}/RECORD +6 -6
- reconcile/utils/terrascript_aws_client.py +1 -1
- {qontract_reconcile-0.10.1rc450.dist-info → qontract_reconcile-0.10.1rc451.dist-info}/WHEEL +0 -0
- {qontract_reconcile-0.10.1rc450.dist-info → qontract_reconcile-0.10.1rc451.dist-info}/entry_points.txt +0 -0
- {qontract_reconcile-0.10.1rc450.dist-info → qontract_reconcile-0.10.1rc451.dist-info}/top_level.txt +0 -0
{qontract_reconcile-0.10.1rc450.dist-info → qontract_reconcile-0.10.1rc451.dist-info}/METADATA
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: qontract-reconcile
|
3
|
-
Version: 0.10.
|
3
|
+
Version: 0.10.1rc451
|
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
|
{qontract_reconcile-0.10.1rc450.dist-info → qontract_reconcile-0.10.1rc451.dist-info}/RECORD
RENAMED
@@ -563,7 +563,7 @@ reconcile/utils/state.py,sha256=-a3fOnGZnDRcTXw9Hg3QtGdKePGtnmoCkPeCt-5HgbE,1367
|
|
563
563
|
reconcile/utils/structs.py,sha256=LcbLEg8WxfRqM6nW7NhcWN0YeqF7SQzxOgntmLs1SgY,352
|
564
564
|
reconcile/utils/template.py,sha256=wTvRU4AnAV_o042tD4Mwls2dwWMuk7MKnde3MaCjaYg,331
|
565
565
|
reconcile/utils/terraform_client.py,sha256=qlD7YJjHnxwAvos-9eS40PwzvDfXpt8y00_inNbSbRg,31760
|
566
|
-
reconcile/utils/terrascript_aws_client.py,sha256=
|
566
|
+
reconcile/utils/terrascript_aws_client.py,sha256=b9h3bK2l_-nDQ34IrKVqI3WPVqz3zrj93tE-d6E2Qnw,261092
|
567
567
|
reconcile/utils/three_way_diff_strategy.py,sha256=xXCWflCzM7KdWuDGzZrv6hZhQJWZ0QGDYoeLLcH-N0c,4470
|
568
568
|
reconcile/utils/throughput.py,sha256=iP4UWAe2LVhDo69mPPmgo9nQ7RxHD6_GS8MZe-aSiuM,344
|
569
569
|
reconcile/utils/unleash.py,sha256=PboEYjJlLws6SbxAqKuv1yBUXQTD1NPkf36NhMQMFmQ,3584
|
@@ -646,8 +646,8 @@ tools/test/test_app_interface_metrics_exporter.py,sha256=dmEcNwZltP1rd_4DbxIYakO
|
|
646
646
|
tools/test/test_qontract_cli.py,sha256=awwTHEc2DWlykuqGIYM0WOBoSL0KRnOraCLk3C7izis,1401
|
647
647
|
tools/test/test_sd_app_sre_alert_report.py,sha256=v363r9zM7__0kR5K6mvJoGFcM9BvE33fWAayrqkpojA,2116
|
648
648
|
tools/test/test_sre_checkpoints.py,sha256=SKqPPTl9ua0RFdSSofnoQX-JZE6dFLO3LRhfQzqtfh8,2607
|
649
|
-
qontract_reconcile-0.10.
|
650
|
-
qontract_reconcile-0.10.
|
651
|
-
qontract_reconcile-0.10.
|
652
|
-
qontract_reconcile-0.10.
|
653
|
-
qontract_reconcile-0.10.
|
649
|
+
qontract_reconcile-0.10.1rc451.dist-info/METADATA,sha256=lZenUyoPN4t7tnYYZMjWDSUB5rfs5ckx40NGP-A6t_o,2348
|
650
|
+
qontract_reconcile-0.10.1rc451.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
651
|
+
qontract_reconcile-0.10.1rc451.dist-info/entry_points.txt,sha256=rTjAv28I_CHLM8ID3OPqMI_suoQ9s7tFbim4aYjn9kk,376
|
652
|
+
qontract_reconcile-0.10.1rc451.dist-info/top_level.txt,sha256=l5ISPoXzt0SdR4jVdkfa7RPSKNc8zAHYWAnR-Dw8Ey8,24
|
653
|
+
qontract_reconcile-0.10.1rc451.dist-info/RECORD,,
|
@@ -2887,7 +2887,7 @@ class TerrascriptClient: # pylint: disable=too-many-public-methods
|
|
2887
2887
|
},
|
2888
2888
|
],
|
2889
2889
|
}
|
2890
|
-
external_account_id = logging_config_bucket.pop("external_account_id")
|
2890
|
+
external_account_id = logging_config_bucket.pop("external_account_id", None)
|
2891
2891
|
if external_account_id:
|
2892
2892
|
external_account_policy = {
|
2893
2893
|
"grantee": {
|
File without changes
|
File without changes
|
{qontract_reconcile-0.10.1rc450.dist-info → qontract_reconcile-0.10.1rc451.dist-info}/top_level.txt
RENAMED
File without changes
|