qontract-reconcile 0.10.2.dev140__py3-none-any.whl → 0.10.2.dev141__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.4
2
2
  Name: qontract-reconcile
3
- Version: 0.10.2.dev140
3
+ Version: 0.10.2.dev141
4
4
  Summary: Collection of tools to reconcile services with their desired state as defined in the app-interface DB.
5
5
  Project-URL: homepage, https://github.com/app-sre/qontract-reconcile
6
6
  Project-URL: repository, https://github.com/app-sre/qontract-reconcile
@@ -198,7 +198,7 @@ reconcile/endpoints_discovery/integration.py,sha256=p50wu4OWO3RmL2A9TvjhRZkTYUe-
198
198
  reconcile/endpoints_discovery/merge_request.py,sha256=_yLb4tnvoZMCko8rta2C_CvOInJa9pa3HzSmHNtjgGU,2978
199
199
  reconcile/endpoints_discovery/merge_request_manager.py,sha256=a8zTIQIpRrUwXexZClwpQnnkEoS6XNZLJziI9x7ly0s,6389
200
200
  reconcile/external_resources/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
201
- reconcile/external_resources/aws.py,sha256=VRXBpekRA2K5-wjS8eT7WHOlmXzr9yKLQ535vkM81Hk,12122
201
+ reconcile/external_resources/aws.py,sha256=0Vjobt0zHcGkPV9C_lXHGV2uSbvU8XX00tLCmEmlKvs,11984
202
202
  reconcile/external_resources/factories.py,sha256=C0QHT0soEv6z99-ELAAE19S5MaMHhV0t1fSiQn0Coc4,5970
203
203
  reconcile/external_resources/integration.py,sha256=WF6O4rT0oUHbNaWEemjLLzCqdNSQIUaymUuj08VsIl8,7034
204
204
  reconcile/external_resources/integration_secrets_sync.py,sha256=CImwt_tyS3MMGpkjI_0gZqYt4XgqIw4BtdJiDH2xrCk,1700
@@ -797,7 +797,7 @@ tools/saas_promotion_state/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJ
797
797
  tools/saas_promotion_state/saas_promotion_state.py,sha256=UfwwRLS5Ya4_Nh1w5n1dvoYtchQvYE9yj1VANt2IKqI,3925
798
798
  tools/sre_checkpoints/__init__.py,sha256=CDaDaywJnmRCLyl_NCcvxi-Zc0hTi_3OdwKiFOyS39I,145
799
799
  tools/sre_checkpoints/util.py,sha256=zEDbGr18ZeHNQwW8pUsr2JRjuXIPz--WAGJxZo9sv_Y,894
800
- qontract_reconcile-0.10.2.dev140.dist-info/METADATA,sha256=Nj_E7bhL_bQgMU8JhqOx8jdvrC_J0jGHOeTOfjm4gFM,24568
801
- qontract_reconcile-0.10.2.dev140.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
802
- qontract_reconcile-0.10.2.dev140.dist-info/entry_points.txt,sha256=5i9l54La3vQrDLAdwDKQWC0iG4sV9RRfOb1BpvzOWLc,698
803
- qontract_reconcile-0.10.2.dev140.dist-info/RECORD,,
800
+ qontract_reconcile-0.10.2.dev141.dist-info/METADATA,sha256=oJwb2iuSQsQaNwsaWxayo4B_4XAk2QWLB5N3AxagfdY,24568
801
+ qontract_reconcile-0.10.2.dev141.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
802
+ qontract_reconcile-0.10.2.dev141.dist-info/entry_points.txt,sha256=5i9l54La3vQrDLAdwDKQWC0iG4sV9RRfOb1BpvzOWLc,698
803
+ qontract_reconcile-0.10.2.dev141.dist-info/RECORD,,
@@ -180,13 +180,10 @@ class AWSRdsFactory(AWSDefaultResourceFactory):
180
180
  sourcedb.get("region", None)
181
181
  or sourcedb_spec.provisioner["resources_default_region"]
182
182
  )
183
- blue_green_deployment_enabled = sourcedb.get(
184
- "blue_green_deployment", {}
185
- ).get("enabled", False)
186
183
  data["replica_source"] = {
187
184
  "identifier": sourcedb["identifier"],
188
185
  "region": sourcedb_region,
189
- "blue_green_deployment_enabled": blue_green_deployment_enabled,
186
+ "blue_green_deployment": sourcedb.get("blue_green_deployment"),
190
187
  }
191
188
  # If AZ is set, but not the region, the region is got from the AZ
192
189
  if "availability_zone" in data and "region" not in data: