qontract-reconcile 0.10.1rc740__py3-none-any.whl → 0.10.1rc742__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.1rc740
3
+ Version: 0.10.1rc742
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
@@ -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=aZU2Ps8FnBZxhgWhjLwAIKspw3bpDLNHSPh1j8TNddc,10220
118
+ reconcile/terraform_users.py,sha256=L921n4bD6-XbJeiiMKUI3quRacIkHlFEyvpi5Dcli_8,10374
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.1rc740.dist-info/METADATA,sha256=iUDDfxisnmFy98N1UwidqBjseklu5ixw3M8D9RQIYuI,2382
781
- qontract_reconcile-0.10.1rc740.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
782
- qontract_reconcile-0.10.1rc740.dist-info/entry_points.txt,sha256=rIxI5zWtHNlfpDeq1a7pZXAPoqf7HG32KMTN3MeWK_8,429
783
- qontract_reconcile-0.10.1rc740.dist-info/top_level.txt,sha256=l5ISPoXzt0SdR4jVdkfa7RPSKNc8zAHYWAnR-Dw8Ey8,24
784
- qontract_reconcile-0.10.1rc740.dist-info/RECORD,,
780
+ qontract_reconcile-0.10.1rc742.dist-info/METADATA,sha256=wi7RZmNJAfEGcpm4t3f_762yHlzo-7XlYEJUewqnUS4,2382
781
+ qontract_reconcile-0.10.1rc742.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
782
+ qontract_reconcile-0.10.1rc742.dist-info/entry_points.txt,sha256=rIxI5zWtHNlfpDeq1a7pZXAPoqf7HG32KMTN3MeWK_8,429
783
+ qontract_reconcile-0.10.1rc742.dist-info/top_level.txt,sha256=l5ISPoXzt0SdR4jVdkfa7RPSKNc8zAHYWAnR-Dw8Ey8,24
784
+ qontract_reconcile-0.10.1rc742.dist-info/RECORD,,
@@ -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.replace("_", "-"), a)
341
343
  ],
342
344
  "roles": [add_role_identity(r) for r in get_tf_roles()],
343
345
  }