qontract-reconcile 0.10.2.dev132__py3-none-any.whl → 0.10.2.dev134__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.dev132
3
+ Version: 0.10.2.dev134
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=ecjIZK_h6JO2wUhUmJlZ9pjOh60n
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=nvghzolcM_xR5ElNNt_PCZsCPzxTehsrzhzC6Y9NtKw,11983
201
+ reconcile/external_resources/aws.py,sha256=Bk7Lnu9IZGcQUWGk-tbHMWff9U7--YKFwsJUmjiIVxg,12083
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
@@ -791,7 +791,7 @@ tools/saas_promotion_state/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJ
791
791
  tools/saas_promotion_state/saas_promotion_state.py,sha256=UfwwRLS5Ya4_Nh1w5n1dvoYtchQvYE9yj1VANt2IKqI,3925
792
792
  tools/sre_checkpoints/__init__.py,sha256=CDaDaywJnmRCLyl_NCcvxi-Zc0hTi_3OdwKiFOyS39I,145
793
793
  tools/sre_checkpoints/util.py,sha256=zEDbGr18ZeHNQwW8pUsr2JRjuXIPz--WAGJxZo9sv_Y,894
794
- qontract_reconcile-0.10.2.dev132.dist-info/METADATA,sha256=NGyCyUtUnoFRVQrSNesrYtCpD5s1naAW4KIK676EcK0,24566
795
- qontract_reconcile-0.10.2.dev132.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
796
- qontract_reconcile-0.10.2.dev132.dist-info/entry_points.txt,sha256=5i9l54La3vQrDLAdwDKQWC0iG4sV9RRfOb1BpvzOWLc,698
797
- qontract_reconcile-0.10.2.dev132.dist-info/RECORD,,
794
+ qontract_reconcile-0.10.2.dev134.dist-info/METADATA,sha256=ZwWSIqfFCLGRV3nVjvaMU8JI-acP431ZIzUOA9ze7D8,24566
795
+ qontract_reconcile-0.10.2.dev134.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
796
+ qontract_reconcile-0.10.2.dev134.dist-info/entry_points.txt,sha256=5i9l54La3vQrDLAdwDKQWC0iG4sV9RRfOb1BpvzOWLc,698
797
+ qontract_reconcile-0.10.2.dev134.dist-info/RECORD,,
@@ -168,7 +168,9 @@ class AWSRdsFactory(AWSDefaultResourceFactory):
168
168
  and (target := blue_green_deployment.get("target"))
169
169
  and (parameter_group := target.get("parameter_group"))
170
170
  ):
171
- target["parameter_group"] = rvr._get_values(parameter_group)
171
+ data["blue_green_deployment"] = blue_green_deployment | {
172
+ "target": target | {"parameter_group": rvr._get_values(parameter_group)}
173
+ }
172
174
  if "replica_source" in data:
173
175
  sourcedb_spec = self._get_source_db_spec(
174
176
  spec.provisioner_name, data["replica_source"]