qontract-reconcile 0.10.2.dev310__py3-none-any.whl → 0.10.2.dev311__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.2.dev310.dist-info → qontract_reconcile-0.10.2.dev311.dist-info}/METADATA +1 -1
- {qontract_reconcile-0.10.2.dev310.dist-info → qontract_reconcile-0.10.2.dev311.dist-info}/RECORD +5 -5
- reconcile/utils/terrascript_aws_client.py +2 -2
- {qontract_reconcile-0.10.2.dev310.dist-info → qontract_reconcile-0.10.2.dev311.dist-info}/WHEEL +0 -0
- {qontract_reconcile-0.10.2.dev310.dist-info → qontract_reconcile-0.10.2.dev311.dist-info}/entry_points.txt +0 -0
{qontract_reconcile-0.10.2.dev310.dist-info → qontract_reconcile-0.10.2.dev311.dist-info}/METADATA
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: qontract-reconcile
|
3
|
-
Version: 0.10.2.
|
3
|
+
Version: 0.10.2.dev311
|
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
|
{qontract_reconcile-0.10.2.dev310.dist-info → qontract_reconcile-0.10.2.dev311.dist-info}/RECORD
RENAMED
@@ -658,7 +658,7 @@ reconcile/utils/sqs_gateway.py,sha256=XNIf3PY4UCPNufP2Ul0UJj3fKlt5larBba-VTT-41F
|
|
658
658
|
reconcile/utils/state.py,sha256=vCHYIfrWLfPyIWEHSaADWlc4OqhwcOiqM3Egqvw-lfo,16372
|
659
659
|
reconcile/utils/structs.py,sha256=P57POzpEntu8ZoZDnsOdni9qUuBDWknmw0iinznxXoY,386
|
660
660
|
reconcile/utils/terraform_client.py,sha256=VP5Bd9Eto-To45TV08SmhhXTB3j-i2Ld3Nnvh2tkcjw,37393
|
661
|
-
reconcile/utils/terrascript_aws_client.py,sha256=
|
661
|
+
reconcile/utils/terrascript_aws_client.py,sha256=KxraVMhv_RcolHthAxucQeb3x0zFD2CCk3gVMjQ_ero,302090
|
662
662
|
reconcile/utils/three_way_diff_strategy.py,sha256=oQcHXd9LVhirJfoaOBoHUYuZVGfyL2voKr6KVI34zZE,4833
|
663
663
|
reconcile/utils/throughput.py,sha256=KNDCVsCLSp89V4pO3sEUd7bJUuh6gNfsxsc_18rEv_Y,357
|
664
664
|
reconcile/utils/vault.py,sha256=6V15LByFghp-U3k0N4lum6V7qt2EAlRfcAxjy5e-FAU,15146
|
@@ -796,7 +796,7 @@ tools/saas_promotion_state/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJ
|
|
796
796
|
tools/saas_promotion_state/saas_promotion_state.py,sha256=uQv2QJAmUXP1g2GPIH30WTlvL9soY6m9lefpZEVDM5w,3965
|
797
797
|
tools/sre_checkpoints/__init__.py,sha256=CDaDaywJnmRCLyl_NCcvxi-Zc0hTi_3OdwKiFOyS39I,145
|
798
798
|
tools/sre_checkpoints/util.py,sha256=KcYVfa3UmJHVP_ocgrKe8NkrO5IDB9aWEDydSokPcRk,975
|
799
|
-
qontract_reconcile-0.10.2.
|
800
|
-
qontract_reconcile-0.10.2.
|
801
|
-
qontract_reconcile-0.10.2.
|
802
|
-
qontract_reconcile-0.10.2.
|
799
|
+
qontract_reconcile-0.10.2.dev311.dist-info/METADATA,sha256=bbWjHaGf7oxXQzuibAvxZGmAYZWXdFjO11qBSsPhHlE,24916
|
800
|
+
qontract_reconcile-0.10.2.dev311.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
801
|
+
qontract_reconcile-0.10.2.dev311.dist-info/entry_points.txt,sha256=5i9l54La3vQrDLAdwDKQWC0iG4sV9RRfOb1BpvzOWLc,698
|
802
|
+
qontract_reconcile-0.10.2.dev311.dist-info/RECORD,,
|
@@ -1343,13 +1343,13 @@ class TerrascriptClient:
|
|
1343
1343
|
vpc_module_values["public_subnets"] = request.subnets.public
|
1344
1344
|
vpc_module_values["public_subnet_tags"] = (
|
1345
1345
|
VPC_REQUEST_DEFAULT_PUBLIC_SUBNET_TAGS
|
1346
|
-
| (request.subnets.public_subnet_tags or {})
|
1346
|
+
| (request.subnets.public_subnet_tags or {})
|
1347
1347
|
)
|
1348
1348
|
if request.subnets.private:
|
1349
1349
|
vpc_module_values["private_subnets"] = request.subnets.private
|
1350
1350
|
vpc_module_values["private_subnet_tags"] = (
|
1351
1351
|
VPC_REQUEST_DEFAULT_PRIVATE_SUBNET_TAGS
|
1352
|
-
| (request.subnets.private_subnet_tags or {})
|
1352
|
+
| (request.subnets.private_subnet_tags or {})
|
1353
1353
|
)
|
1354
1354
|
if request.subnets.availability_zones:
|
1355
1355
|
vpc_module_values["azs"] = request.subnets.availability_zones
|
{qontract_reconcile-0.10.2.dev310.dist-info → qontract_reconcile-0.10.2.dev311.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|