qontract-reconcile 0.10.1rc740__py3-none-any.whl → 0.10.1rc741__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.1rc740.dist-info → qontract_reconcile-0.10.1rc741.dist-info}/METADATA +1 -1
- {qontract_reconcile-0.10.1rc740.dist-info → qontract_reconcile-0.10.1rc741.dist-info}/RECORD +6 -6
- reconcile/terraform_users.py +2 -0
- {qontract_reconcile-0.10.1rc740.dist-info → qontract_reconcile-0.10.1rc741.dist-info}/WHEEL +0 -0
- {qontract_reconcile-0.10.1rc740.dist-info → qontract_reconcile-0.10.1rc741.dist-info}/entry_points.txt +0 -0
- {qontract_reconcile-0.10.1rc740.dist-info → qontract_reconcile-0.10.1rc741.dist-info}/top_level.txt +0 -0
{qontract_reconcile-0.10.1rc740.dist-info → qontract_reconcile-0.10.1rc741.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.1rc741
|
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.1rc740.dist-info → qontract_reconcile-0.10.1rc741.dist-info}/RECORD
RENAMED
@@ -115,7 +115,7 @@ reconcile/terraform_cloudflare_users.py,sha256=1EbTHwJgiPkJpMP-Ag340QNgGK3mXn3dc
|
|
115
115
|
reconcile/terraform_repo.py,sha256=c0GZFuY3rCm6VHjHqYbsgOHrEkRWKF_1LrMThsn2XDw,16127
|
116
116
|
reconcile/terraform_resources.py,sha256=BN8XuJwjOt1ztruEAHydkd0YiBlb3fHZ7n0snZtRhck,19356
|
117
117
|
reconcile/terraform_tgw_attachments.py,sha256=6uIzRWLtFerQZ2yOygv54tGmXbXTvexnFnu_DSG2CNQ,16043
|
118
|
-
reconcile/terraform_users.py,sha256=
|
118
|
+
reconcile/terraform_users.py,sha256=bPdpipksGkRppfOka-UqawRiF7M-LwcZeW7RU-tP4zo,10356
|
119
119
|
reconcile/terraform_vpc_peerings.py,sha256=rnDH1u93OyzrBM8Hib0HwSnlxZtx4ScRQaZAcn3mx-k,25402
|
120
120
|
reconcile/vault_replication.py,sha256=79GZ_kCimPoQcxkdhkWTQxPOAa46E0mNhf05s_Mk5so,17385
|
121
121
|
reconcile/vpc_peerings_validator.py,sha256=Kv22HJVlTW9l9GB2eXwjPWqdDbr_VuvQBNPttox6s5o,7177
|
@@ -777,8 +777,8 @@ tools/test/test_app_interface_metrics_exporter.py,sha256=SX7qL3D1SIRKFo95FoQztvf
|
|
777
777
|
tools/test/test_qontract_cli.py,sha256=w2l4BHB09k1d-BGJ1jBUNCqDv7zkqYrMHojQXg-21kQ,4155
|
778
778
|
tools/test/test_sd_app_sre_alert_report.py,sha256=v363r9zM7__0kR5K6mvJoGFcM9BvE33fWAayrqkpojA,2116
|
779
779
|
tools/test/test_sre_checkpoints.py,sha256=SKqPPTl9ua0RFdSSofnoQX-JZE6dFLO3LRhfQzqtfh8,2607
|
780
|
-
qontract_reconcile-0.10.
|
781
|
-
qontract_reconcile-0.10.
|
782
|
-
qontract_reconcile-0.10.
|
783
|
-
qontract_reconcile-0.10.
|
784
|
-
qontract_reconcile-0.10.
|
780
|
+
qontract_reconcile-0.10.1rc741.dist-info/METADATA,sha256=cgfVlFcpP_7SBRQSS8r6Dxp9Q5wu8J-1yR8mF4aBc6Y,2382
|
781
|
+
qontract_reconcile-0.10.1rc741.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
782
|
+
qontract_reconcile-0.10.1rc741.dist-info/entry_points.txt,sha256=rIxI5zWtHNlfpDeq1a7pZXAPoqf7HG32KMTN3MeWK_8,429
|
783
|
+
qontract_reconcile-0.10.1rc741.dist-info/top_level.txt,sha256=l5ISPoXzt0SdR4jVdkfa7RPSKNc8zAHYWAnR-Dw8Ey8,24
|
784
|
+
qontract_reconcile-0.10.1rc741.dist-info/RECORD,,
|
reconcile/terraform_users.py
CHANGED
@@ -18,6 +18,7 @@ from reconcile.utils import (
|
|
18
18
|
gql,
|
19
19
|
)
|
20
20
|
from reconcile.utils.aws_api import AWSApi
|
21
|
+
from reconcile.utils.disabled_integrations import integration_is_enabled
|
21
22
|
from reconcile.utils.runtime.integration import DesiredStateShardConfig
|
22
23
|
from reconcile.utils.secret_reader import SecretReader
|
23
24
|
from reconcile.utils.semver_helper import make_semver
|
@@ -338,6 +339,7 @@ def early_exit_desired_state(*args, **kwargs) -> dict[str, Any]:
|
|
338
339
|
"accounts": [
|
339
340
|
add_account_identity(a)
|
340
341
|
for a in queries.get_aws_accounts(terraform_state=True)
|
342
|
+
if integration_is_enabled(QONTRACT_INTEGRATION, a)
|
341
343
|
],
|
342
344
|
"roles": [add_role_identity(r) for r in get_tf_roles()],
|
343
345
|
}
|
File without changes
|
File without changes
|
{qontract_reconcile-0.10.1rc740.dist-info → qontract_reconcile-0.10.1rc741.dist-info}/top_level.txt
RENAMED
File without changes
|