pulumi-consul 3.12.3a1734111860__py3-none-any.whl → 3.13.0a1723008442__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.
Potentially problematic release.
This version of pulumi-consul might be problematic. Click here for more details.
- pulumi_consul/_inputs.py +10 -1573
- pulumi_consul/_utilities.py +1 -1
- pulumi_consul/acl_auth_method.py +5 -10
- pulumi_consul/acl_binding_rule.py +5 -10
- pulumi_consul/acl_policy.py +0 -5
- pulumi_consul/acl_role.py +21 -26
- pulumi_consul/acl_role_policy_attachment.py +0 -5
- pulumi_consul/acl_token.py +15 -20
- pulumi_consul/acl_token_policy_attachment.py +0 -5
- pulumi_consul/acl_token_role_attachment.py +0 -5
- pulumi_consul/admin_partition.py +0 -5
- pulumi_consul/agent_service.py +0 -5
- pulumi_consul/autopilot_config.py +0 -5
- pulumi_consul/catalog_entry.py +5 -10
- pulumi_consul/certificate_authority.py +0 -5
- pulumi_consul/config/__init__.pyi +0 -5
- pulumi_consul/config/outputs.py +0 -5
- pulumi_consul/config/vars.py +0 -5
- pulumi_consul/config_entry.py +0 -5
- pulumi_consul/config_entry_service_defaults.py +30 -35
- pulumi_consul/config_entry_service_intentions.py +48 -53
- pulumi_consul/config_entry_service_resolver.py +60 -65
- pulumi_consul/config_entry_service_router.py +5 -10
- pulumi_consul/config_entry_service_splitter.py +75 -80
- pulumi_consul/config_entry_v2_exported_services.py +0 -5
- pulumi_consul/get_acl_auth_method.py +5 -25
- pulumi_consul/get_acl_policy.py +5 -20
- pulumi_consul/get_acl_role.py +5 -22
- pulumi_consul/get_acl_token.py +5 -25
- pulumi_consul/get_acl_token_secret_id.py +5 -21
- pulumi_consul/get_agent_config.py +5 -17
- pulumi_consul/get_agent_self.py +5 -82
- pulumi_consul/get_autopilot_health.py +5 -16
- pulumi_consul/get_catalog_nodes.py +9 -21
- pulumi_consul/get_catalog_service.py +9 -26
- pulumi_consul/get_catalog_services.py +15 -27
- pulumi_consul/get_config_entry.py +5 -20
- pulumi_consul/get_config_entry_v2_exported_services.py +5 -27
- pulumi_consul/get_datacenters.py +5 -12
- pulumi_consul/get_key_prefix.py +19 -39
- pulumi_consul/get_keys.py +19 -38
- pulumi_consul/get_network_area_members.py +5 -18
- pulumi_consul/get_network_segments.py +5 -16
- pulumi_consul/get_nodes.py +9 -21
- pulumi_consul/get_peering.py +5 -22
- pulumi_consul/get_peerings.py +5 -14
- pulumi_consul/get_service.py +9 -26
- pulumi_consul/get_service_health.py +5 -28
- pulumi_consul/get_services.py +15 -27
- pulumi_consul/intention.py +0 -5
- pulumi_consul/key_prefix.py +15 -20
- pulumi_consul/keys.py +13 -18
- pulumi_consul/license.py +0 -5
- pulumi_consul/namespace.py +0 -5
- pulumi_consul/namespace_policy_attachment.py +0 -5
- pulumi_consul/namespace_role_attachment.py +0 -5
- pulumi_consul/network_area.py +0 -5
- pulumi_consul/node.py +0 -5
- pulumi_consul/outputs.py +0 -5
- pulumi_consul/peering.py +0 -5
- pulumi_consul/peering_token.py +0 -5
- pulumi_consul/prepared_query.py +51 -56
- pulumi_consul/provider.py +6 -11
- pulumi_consul/pulumi-plugin.json +1 -1
- pulumi_consul/service.py +43 -48
- {pulumi_consul-3.12.3a1734111860.dist-info → pulumi_consul-3.13.0a1723008442.dist-info}/METADATA +5 -6
- pulumi_consul-3.13.0a1723008442.dist-info/RECORD +72 -0
- {pulumi_consul-3.12.3a1734111860.dist-info → pulumi_consul-3.13.0a1723008442.dist-info}/WHEEL +1 -1
- pulumi_consul-3.12.3a1734111860.dist-info/RECORD +0 -72
- {pulumi_consul-3.12.3a1734111860.dist-info → pulumi_consul-3.13.0a1723008442.dist-info}/top_level.txt +0 -0
pulumi_consul/service.py
CHANGED
|
@@ -4,14 +4,9 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
-
import sys
|
|
8
7
|
import pulumi
|
|
9
8
|
import pulumi.runtime
|
|
10
9
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
-
if sys.version_info >= (3, 11):
|
|
12
|
-
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
-
else:
|
|
14
|
-
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
15
10
|
from . import _utilities
|
|
16
11
|
from . import outputs
|
|
17
12
|
from ._inputs import *
|
|
@@ -447,7 +442,7 @@ class Service(pulumi.CustomResource):
|
|
|
447
442
|
resource_name: str,
|
|
448
443
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
449
444
|
address: Optional[pulumi.Input[str]] = None,
|
|
450
|
-
checks: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
445
|
+
checks: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ServiceCheckArgs']]]]] = None,
|
|
451
446
|
datacenter: Optional[pulumi.Input[str]] = None,
|
|
452
447
|
enable_tag_override: Optional[pulumi.Input[bool]] = None,
|
|
453
448
|
external: Optional[pulumi.Input[bool]] = None,
|
|
@@ -510,27 +505,27 @@ class Service(pulumi.CustomResource):
|
|
|
510
505
|
name="redis",
|
|
511
506
|
node="redis",
|
|
512
507
|
port=6379,
|
|
513
|
-
checks=[
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
508
|
+
checks=[consul.ServiceCheckArgs(
|
|
509
|
+
check_id="service:redis1",
|
|
510
|
+
name="Redis health check",
|
|
511
|
+
status="passing",
|
|
512
|
+
http="https://www.hashicorptest.com",
|
|
513
|
+
tls_skip_verify=False,
|
|
514
|
+
method="PUT",
|
|
515
|
+
interval="5s",
|
|
516
|
+
timeout="1s",
|
|
517
|
+
deregister_critical_service_after="30s",
|
|
518
|
+
headers=[
|
|
519
|
+
consul.ServiceCheckHeaderArgs(
|
|
520
|
+
name="foo",
|
|
521
|
+
values=["test"],
|
|
522
|
+
),
|
|
523
|
+
consul.ServiceCheckHeaderArgs(
|
|
524
|
+
name="bar",
|
|
525
|
+
values=["test"],
|
|
526
|
+
),
|
|
532
527
|
],
|
|
533
|
-
|
|
528
|
+
)])
|
|
534
529
|
```
|
|
535
530
|
|
|
536
531
|
:param str resource_name: The name of the resource.
|
|
@@ -603,27 +598,27 @@ class Service(pulumi.CustomResource):
|
|
|
603
598
|
name="redis",
|
|
604
599
|
node="redis",
|
|
605
600
|
port=6379,
|
|
606
|
-
checks=[
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
601
|
+
checks=[consul.ServiceCheckArgs(
|
|
602
|
+
check_id="service:redis1",
|
|
603
|
+
name="Redis health check",
|
|
604
|
+
status="passing",
|
|
605
|
+
http="https://www.hashicorptest.com",
|
|
606
|
+
tls_skip_verify=False,
|
|
607
|
+
method="PUT",
|
|
608
|
+
interval="5s",
|
|
609
|
+
timeout="1s",
|
|
610
|
+
deregister_critical_service_after="30s",
|
|
611
|
+
headers=[
|
|
612
|
+
consul.ServiceCheckHeaderArgs(
|
|
613
|
+
name="foo",
|
|
614
|
+
values=["test"],
|
|
615
|
+
),
|
|
616
|
+
consul.ServiceCheckHeaderArgs(
|
|
617
|
+
name="bar",
|
|
618
|
+
values=["test"],
|
|
619
|
+
),
|
|
625
620
|
],
|
|
626
|
-
|
|
621
|
+
)])
|
|
627
622
|
```
|
|
628
623
|
|
|
629
624
|
:param str resource_name: The name of the resource.
|
|
@@ -642,7 +637,7 @@ class Service(pulumi.CustomResource):
|
|
|
642
637
|
resource_name: str,
|
|
643
638
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
644
639
|
address: Optional[pulumi.Input[str]] = None,
|
|
645
|
-
checks: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
640
|
+
checks: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ServiceCheckArgs']]]]] = None,
|
|
646
641
|
datacenter: Optional[pulumi.Input[str]] = None,
|
|
647
642
|
enable_tag_override: Optional[pulumi.Input[bool]] = None,
|
|
648
643
|
external: Optional[pulumi.Input[bool]] = None,
|
|
@@ -689,7 +684,7 @@ class Service(pulumi.CustomResource):
|
|
|
689
684
|
id: pulumi.Input[str],
|
|
690
685
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
691
686
|
address: Optional[pulumi.Input[str]] = None,
|
|
692
|
-
checks: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
687
|
+
checks: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ServiceCheckArgs']]]]] = None,
|
|
693
688
|
datacenter: Optional[pulumi.Input[str]] = None,
|
|
694
689
|
enable_tag_override: Optional[pulumi.Input[bool]] = None,
|
|
695
690
|
external: Optional[pulumi.Input[bool]] = None,
|
{pulumi_consul-3.12.3a1734111860.dist-info → pulumi_consul-3.13.0a1723008442.dist-info}/METADATA
RENAMED
|
@@ -1,17 +1,16 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: pulumi_consul
|
|
3
|
-
Version: 3.
|
|
3
|
+
Version: 3.13.0a1723008442
|
|
4
4
|
Summary: A Pulumi package for creating and managing consul resources.
|
|
5
5
|
License: Apache-2.0
|
|
6
6
|
Project-URL: Homepage, https://pulumi.io
|
|
7
7
|
Project-URL: Repository, https://github.com/pulumi/pulumi-consul
|
|
8
8
|
Keywords: pulumi,consul
|
|
9
|
-
Requires-Python: >=3.
|
|
9
|
+
Requires-Python: >=3.8
|
|
10
10
|
Description-Content-Type: text/markdown
|
|
11
|
-
Requires-Dist: parver>=0.2.1
|
|
12
|
-
Requires-Dist: pulumi<4.0.0,>=3.
|
|
13
|
-
Requires-Dist: semver>=2.8.1
|
|
14
|
-
Requires-Dist: typing-extensions>=4.11; python_version < "3.11"
|
|
11
|
+
Requires-Dist: parver >=0.2.1
|
|
12
|
+
Requires-Dist: pulumi <4.0.0,>=3.0.0
|
|
13
|
+
Requires-Dist: semver >=2.8.1
|
|
15
14
|
|
|
16
15
|
[](https://github.com/pulumi/pulumi-consul/actions)
|
|
17
16
|
[](https://slack.pulumi.com)
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
pulumi_consul/__init__.py,sha256=Pt7eaNDHQaFtqd8PvL3XabtrN5K7M-kUemQUZf2HUbE,8359
|
|
2
|
+
pulumi_consul/_inputs.py,sha256=HRrWfx_uaV0y52NOPPQZjQQnNtHw20w7LSRQdCW3_6Y,217015
|
|
3
|
+
pulumi_consul/_utilities.py,sha256=aNnnaO6zRha3FhNHonuabR4fJLWGXANtK5dlh1Mz95k,10506
|
|
4
|
+
pulumi_consul/acl_auth_method.py,sha256=nZQvvZT9v7-epDNtdBbGQuzZA_4ZRP8_QYGzXNkluFY,32468
|
|
5
|
+
pulumi_consul/acl_binding_rule.py,sha256=qoMrO-kFxOlCiYmtZRcaNkI6deNTNo7Cu6vM3Ll8nHo,22734
|
|
6
|
+
pulumi_consul/acl_policy.py,sha256=0z0_E08Zb8s0EE3lFtveE0t4ns47Dqj5b3IRGe4DpQE,15624
|
|
7
|
+
pulumi_consul/acl_role.py,sha256=NAz5WiFWotX2_ZCADkFC0OVtaacpIe_wLEl6IUz8OFs,23952
|
|
8
|
+
pulumi_consul/acl_role_policy_attachment.py,sha256=Adk9-dTzl9uiXhmk1aT_tZSmIJfLJiHTUWYSzN8pUWM,8541
|
|
9
|
+
pulumi_consul/acl_token.py,sha256=yoMk7_ERtjigdtcPbTvIjKSWUyqD0lX3qjHkLJ4yi5s,31321
|
|
10
|
+
pulumi_consul/acl_token_policy_attachment.py,sha256=glF99m1ImmIG7uyNOQyRNR24D1cTrsayKh-e3ANXrm8,8508
|
|
11
|
+
pulumi_consul/acl_token_role_attachment.py,sha256=3o1wjCqBWTVQGK-PNLQswAt8rVjiHwoUPmcvMYdHrM8,7757
|
|
12
|
+
pulumi_consul/admin_partition.py,sha256=2y0RX2FArESVxwhB8xkUmcx6UAlTWpdzPiuVuO5CmJ4,8589
|
|
13
|
+
pulumi_consul/agent_service.py,sha256=dElBoSCeo_3d7uut7rBQV4AGmGMm56sH5PivFwQAZtw,12987
|
|
14
|
+
pulumi_consul/autopilot_config.py,sha256=g_N2ZqciXVA-H4kD5vZExAsABfawil-5KOpJmo41W7A,28023
|
|
15
|
+
pulumi_consul/catalog_entry.py,sha256=H7WxBCnirQ9AMaPKNXFt-HXi-AQhwaqZjQEZckwcxhA,17139
|
|
16
|
+
pulumi_consul/certificate_authority.py,sha256=N99dCAFw0CFOZb2eG-WobPPIDB3J9FCDaA0Gl_wcjzQ,10424
|
|
17
|
+
pulumi_consul/config_entry.py,sha256=QjMjGua9IGQvYSlAoN0Lxd8dCJrIPakfsCMx2-G-1PE,30488
|
|
18
|
+
pulumi_consul/config_entry_service_defaults.py,sha256=wSyKQVZieDuLJQd64denFq1C-1aVn3jeVyJOohMrZ5k,52869
|
|
19
|
+
pulumi_consul/config_entry_service_intentions.py,sha256=ym6dvGNUvJboSrtvIHM4QE_y7V_1NF4ev0Y4kbh0AjY,22185
|
|
20
|
+
pulumi_consul/config_entry_service_resolver.py,sha256=8pet5lVdnuMOkaDpJkQnQRqW1_N1-3_fTwsAfN41Ccs,35410
|
|
21
|
+
pulumi_consul/config_entry_service_router.py,sha256=ANW6NOgPxk2nyc5k3rXfEbHpnnNdU5JVsp1FhiUSNPA,14342
|
|
22
|
+
pulumi_consul/config_entry_service_splitter.py,sha256=Yj57zIzBC5l1LpVXVLNwK2UCHuhdjUciqHq6dzFOvD8,20220
|
|
23
|
+
pulumi_consul/config_entry_v2_exported_services.py,sha256=fzqOnQMR3Jk1gzx6GGHSRBMKpFAjk3XGArUfTdZ9Q6k,21469
|
|
24
|
+
pulumi_consul/get_acl_auth_method.py,sha256=3AGxnlKklWqtUynr8s2ThMkdCad5dUE2A1HJcudGSLU,9368
|
|
25
|
+
pulumi_consul/get_acl_policy.py,sha256=LFQlcq2jS7ptdGTWr9Dos9Wq64gqeTv8GNM4G88SNVU,5926
|
|
26
|
+
pulumi_consul/get_acl_role.py,sha256=Rcbne_FKhB2lNSQEj5P87n68uO9hjGRWDx-IJZC-x2o,7581
|
|
27
|
+
pulumi_consul/get_acl_token.py,sha256=7n2WTxRrF-zrYQRmFfy4jLXYjsLsoCQ5s81gVqvEKwU,9808
|
|
28
|
+
pulumi_consul/get_acl_token_secret_id.py,sha256=tQYhYIWXmNT6VP_zimJDetb3PXW8-oBZdn5KqYmDQkg,6869
|
|
29
|
+
pulumi_consul/get_agent_config.py,sha256=F6Khi2DZQROdaxOQVNe2iJtVXroLDICQfQ3t_shRodE,5959
|
|
30
|
+
pulumi_consul/get_agent_self.py,sha256=-cw13p0lRJLyj8qvQp06ZZ5c18JatSdw1am6QoJZqnE,43212
|
|
31
|
+
pulumi_consul/get_autopilot_health.py,sha256=WKtlV88Q7C3JHVaHa6Sa7p7aXeggEXfQaLQXz3ZVwRY,5266
|
|
32
|
+
pulumi_consul/get_catalog_nodes.py,sha256=nZZIzVkm74PtG34IlKugBZnX3adeQyOSNmoZz_mHKIE,5881
|
|
33
|
+
pulumi_consul/get_catalog_service.py,sha256=yqx5jEJHt-lvAodRu-jgEOeSMr8PS_EqdzDQpvDM8oY,9233
|
|
34
|
+
pulumi_consul/get_catalog_services.py,sha256=gGR6oN9YncIZSrYY-duOTDChzj5ubje0wMrWVlSzEDE,7110
|
|
35
|
+
pulumi_consul/get_config_entry.py,sha256=8pHLWLT5RUVPiJj5zU2VV1xkGsT9JpLsmVwxeqbEpzE,5478
|
|
36
|
+
pulumi_consul/get_config_entry_v2_exported_services.py,sha256=Erle3cVbA2CE1ivD0Gg9A53mO4NnKmWt4wMbwCQW9GY,9807
|
|
37
|
+
pulumi_consul/get_datacenters.py,sha256=WNivbaPSVbCtwHtvdRjljUti1YWaOJtqxBBc-_7IFEc,2669
|
|
38
|
+
pulumi_consul/get_key_prefix.py,sha256=G3w3w-26fE_CH7EiJfBARWxSUs7WnyEGZGj7tMLmwOk,10303
|
|
39
|
+
pulumi_consul/get_keys.py,sha256=HepQZfh4rqOYwQFnZyCRLMufu3fsl89vnySJ5BEfkHM,9183
|
|
40
|
+
pulumi_consul/get_network_area_members.py,sha256=sQwQj44r8MskEDXYEVg3XmazI2mgAu5LSqmFaJIO4i4,6258
|
|
41
|
+
pulumi_consul/get_network_segments.py,sha256=NhphPW3eeZBPcVuFMoAdoSbTyggyI-kvvdSP_06cXAI,5135
|
|
42
|
+
pulumi_consul/get_nodes.py,sha256=ZcKZWIWuWgclQGj4QYTqKdhvQcSI_rxYZrlBakLRvsA,5359
|
|
43
|
+
pulumi_consul/get_peering.py,sha256=Bcpy_TCMVuHrmzWWM5GRTLiaZq5gGJuZYcis9JCMraE,6300
|
|
44
|
+
pulumi_consul/get_peerings.py,sha256=EX1J_eQf01voOEvPB2IuWV6HNdvTeTpn_bbuY0gQ9QQ,3024
|
|
45
|
+
pulumi_consul/get_service.py,sha256=HV1p2U59QDgDbq5jzpF3R0ProYET9xM-zxvu_3urIjE,8631
|
|
46
|
+
pulumi_consul/get_service_health.py,sha256=2CCrunPsyCDOjmcJXhGmSIJSMc6a-0vlvuiEAVJ80Dw,10133
|
|
47
|
+
pulumi_consul/get_services.py,sha256=2YIBv7zSuGuiGvFotifO_193lcuwPim6Us_IGTKPD8g,6571
|
|
48
|
+
pulumi_consul/intention.py,sha256=naX-vekDSLky5qeApRsqjCxralnpkcyBp-upO3fUd3g,25830
|
|
49
|
+
pulumi_consul/key_prefix.py,sha256=ai9OA3z0T15W-_UgbSjuO8_NNMrZJKOluFFz7XpKXtA,25591
|
|
50
|
+
pulumi_consul/keys.py,sha256=sl7UcvZkKlBLwB02SMuPQLPQVrBxMnhkk4_2MZPAIa0,17245
|
|
51
|
+
pulumi_consul/license.py,sha256=OMJsth0jpRMssJjJ64UTUZSdm8eXD_DJA40Wliy0MmI,19879
|
|
52
|
+
pulumi_consul/namespace.py,sha256=CJZE9TgWD0bdKndmb8hlyyWIttNUPJou0k5LJBjyK2E,18021
|
|
53
|
+
pulumi_consul/namespace_policy_attachment.py,sha256=0qlJ92SJLDdocHj8dmm0cd1LAqF-IlB5FouYhUOyATo,8200
|
|
54
|
+
pulumi_consul/namespace_role_attachment.py,sha256=-xlic3f_MQ7JN0i0aNPEvSD7pT8vzrM0fvlUB7KLOoY,8052
|
|
55
|
+
pulumi_consul/network_area.py,sha256=uXillh7ugCOe1VH8t2n1Bb01v8UzIw1j2z0BT4932H8,19052
|
|
56
|
+
pulumi_consul/node.py,sha256=EuyGxn_vJI8tyYBqL-b-3_kyT6PXPHv1xNFacpuLznE,17381
|
|
57
|
+
pulumi_consul/outputs.py,sha256=EeFL7PvjA1O4mq2KadOeM88dxWc3U46RfMJrXaw3vPY,234693
|
|
58
|
+
pulumi_consul/peering.py,sha256=B2_vXke9-rZ2IiFiQRddhW8lDJex8PFtMFqzR5IR6Rc,20322
|
|
59
|
+
pulumi_consul/peering_token.py,sha256=3Yxj8DK832xp_qNF4nnKzCtHbijDMydZlQJr_3rGfYU,17266
|
|
60
|
+
pulumi_consul/prepared_query.py,sha256=JUfSgOBPZ0Jm-FM5pvF218rAkg6qRGy8VMssHoPmQpw,53529
|
|
61
|
+
pulumi_consul/provider.py,sha256=1xhCm2DWQ1CuCIy7sDnl_lzHDj4wtS2mc3OH7vQaToU,24679
|
|
62
|
+
pulumi_consul/pulumi-plugin.json,sha256=NqJDW0UvzJW8R8kN63nUexBNPtQdx2DoQ_p2o2bQV6g,83
|
|
63
|
+
pulumi_consul/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
64
|
+
pulumi_consul/service.py,sha256=lg7C9Q376BtnGIB4FUXvdCZFyo8uOLACc5DqlvyPvJ0,34285
|
|
65
|
+
pulumi_consul/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
|
|
66
|
+
pulumi_consul/config/__init__.pyi,sha256=Xr56VkEbCA8jXnSDMCxONcnilMpQdAHs6-imo_c-TBU,2587
|
|
67
|
+
pulumi_consul/config/outputs.py,sha256=gDtRkTfR9uCq26RXew73SpJWdrCejHeWHhoL5--_LW4,3384
|
|
68
|
+
pulumi_consul/config/vars.py,sha256=SXNUccmf6RtLkyaTd4mMknJtP2rlISHxMcq4PUHRgpg,4255
|
|
69
|
+
pulumi_consul-3.13.0a1723008442.dist-info/METADATA,sha256=OuupwET58PJuFTm5Uru5xa6a4CPgQQG0_I-intuDVzg,3944
|
|
70
|
+
pulumi_consul-3.13.0a1723008442.dist-info/WHEEL,sha256=R0nc6qTxuoLk7ShA2_Y-UWkN8ZdfDBG2B6Eqpz2WXbs,91
|
|
71
|
+
pulumi_consul-3.13.0a1723008442.dist-info/top_level.txt,sha256=SrKSXrIq8AWqnNKrd7pWSC691idGwXi9XMA-DTWwcfg,14
|
|
72
|
+
pulumi_consul-3.13.0a1723008442.dist-info/RECORD,,
|
|
@@ -1,72 +0,0 @@
|
|
|
1
|
-
pulumi_consul/__init__.py,sha256=Pt7eaNDHQaFtqd8PvL3XabtrN5K7M-kUemQUZf2HUbE,8359
|
|
2
|
-
pulumi_consul/_inputs.py,sha256=9ylGvDfyC5q7S7avI25arRjJQPtpfr6ZtLZAkEfpwIs,283079
|
|
3
|
-
pulumi_consul/_utilities.py,sha256=-gxwnD6__OYdSf8jJgJijNuu-UHUwi5pJ1H7-eIHDhg,10504
|
|
4
|
-
pulumi_consul/acl_auth_method.py,sha256=BwaM-CWgFLBgamfjRAMA9HxmAHj0IaBNR5yGX0edCYs,32777
|
|
5
|
-
pulumi_consul/acl_binding_rule.py,sha256=WCZbZ0ZISgSnWd9XGRjBY1NgqPcqyVi5nf-0Zb34Z0s,23023
|
|
6
|
-
pulumi_consul/acl_policy.py,sha256=Arj03LFA_1Nwj8WNf_KRvCZFgAUZDgoB3pC7L3abzo8,15798
|
|
7
|
-
pulumi_consul/acl_role.py,sha256=Kkkr40kYwhuImnhgAIJcluq5h7inMVp3gpJgohwOrb8,24396
|
|
8
|
-
pulumi_consul/acl_role_policy_attachment.py,sha256=gu92X_xLg8GWeOuR-aLH9rVULZsaqpAndPbgeg8JG00,8715
|
|
9
|
-
pulumi_consul/acl_token.py,sha256=gzt5zbeVTPxYt45pFVlDBkpdtr-T9jHEgx5dVS5ixug,31840
|
|
10
|
-
pulumi_consul/acl_token_policy_attachment.py,sha256=I9e8kH3ADwtKozjanEJv5O5kUxwaYUqEGn8QUHBztLQ,8682
|
|
11
|
-
pulumi_consul/acl_token_role_attachment.py,sha256=5_xBK0HNA1ors7JudHt0OBlgzZI0wDrJIa4-sv6QgJY,7931
|
|
12
|
-
pulumi_consul/admin_partition.py,sha256=gxjJLWbFHrxRk7bgjXxSFpjR57mPWdV2aIkMw6CjKWU,8763
|
|
13
|
-
pulumi_consul/agent_service.py,sha256=yArYs5VBjjfMKB5QV1MSpfjlrePiwN-yYx3J7e7AxI0,13161
|
|
14
|
-
pulumi_consul/autopilot_config.py,sha256=dEHfsLv6ypbsEueCnZABEwsxhWYnrorpPxHOYUbUOPc,28197
|
|
15
|
-
pulumi_consul/catalog_entry.py,sha256=bCq-qGWDVHjaTXjYO4B0Mgx7caaZrqErAAw0EnoEkwE,17413
|
|
16
|
-
pulumi_consul/certificate_authority.py,sha256=tdo5sxQlt1mPaHGLDC0j8IQfxSi1P9aSAwD50x26u44,10598
|
|
17
|
-
pulumi_consul/config_entry.py,sha256=chwcWJK-mB9QVF8Eznd2VMDbEXh-37IG2RpR7YwtJzE,30662
|
|
18
|
-
pulumi_consul/config_entry_service_defaults.py,sha256=pUD1a8qbsZvXk3iCYD9zPOV7TAcl4nOjSFW1-tFB4HU,54213
|
|
19
|
-
pulumi_consul/config_entry_service_intentions.py,sha256=n74fIxCKtfkIB33dVlbY_84rou-0JXH5CJ-OP93H9cw,22274
|
|
20
|
-
pulumi_consul/config_entry_service_resolver.py,sha256=8zbjIUgTR691nvUOBIw1coP2HTuaz0qgbSB47r2s1HY,35912
|
|
21
|
-
pulumi_consul/config_entry_service_router.py,sha256=XrblASG8WQp6Sr3TZeonhkUEledELLwAylwpvv3Abo8,14666
|
|
22
|
-
pulumi_consul/config_entry_service_splitter.py,sha256=gj0g9XrWMcgyl5-j2Qg3HnUy1opfOc4SRrQv-cRl2cg,19804
|
|
23
|
-
pulumi_consul/config_entry_v2_exported_services.py,sha256=BBLL7yU0IZm4xoHO-BF5Gu1ppM3PJj1Nt6mR7DifVZY,21643
|
|
24
|
-
pulumi_consul/get_acl_auth_method.py,sha256=D8kU4YqOHgOrdTYhZaLeu1rqRxt-v0waAHWts9y_l0I,10633
|
|
25
|
-
pulumi_consul/get_acl_policy.py,sha256=nJLzLTnr20Xe1oZQRs_Zpm_GMOcmPAofjGQS6f1v9Ug,6867
|
|
26
|
-
pulumi_consul/get_acl_role.py,sha256=Hn5naDQjvCDoQz9zzSv94jInxrBGiz_HPQ7WAQ2lk0w,8680
|
|
27
|
-
pulumi_consul/get_acl_token.py,sha256=it9LHrCVnfQgcvBAeZ01uURs-qHwnAwc7yL3rWckMkg,11104
|
|
28
|
-
pulumi_consul/get_acl_token_secret_id.py,sha256=2DQQGJNERpgWxWTwsutNbmDRzGe9RGIYWAwEZatp3wE,7905
|
|
29
|
-
pulumi_consul/get_agent_config.py,sha256=MoKK0cnQAruBebv_BvFPVtZCzEEv-Zo4j_7DpdwnjQw,6798
|
|
30
|
-
pulumi_consul/get_agent_self.py,sha256=lMoyEMpXaYyuf513lnzvB1oMzi2S1QtZXRYMl2hJTd8,48496
|
|
31
|
-
pulumi_consul/get_autopilot_health.py,sha256=JzeRezS8Iv_GtuE54sPUUqsM1Y_e4WqPQYXPD9MIKEg,6067
|
|
32
|
-
pulumi_consul/get_catalog_nodes.py,sha256=Uy2-iM0Eolzy7nyP-iyk62j7ZKZuogoLB_aqNkwshjI,6835
|
|
33
|
-
pulumi_consul/get_catalog_service.py,sha256=U45zn0NEfgHUBtZfLg-wu-xX75JAL9k6gVtM4hrQTCE,10362
|
|
34
|
-
pulumi_consul/get_catalog_services.py,sha256=RM22H4Ii3BRTgBXPy6quWJfLhetSL7SeVpTy-rytS_E,8013
|
|
35
|
-
pulumi_consul/get_config_entry.py,sha256=rxILiiM5Lyn7Y6LFWkGKRjFUPfIglA38SZPz8zFSxEQ,6390
|
|
36
|
-
pulumi_consul/get_config_entry_v2_exported_services.py,sha256=IkspeDLamGJq0Yqeu7LieTCF2xpWag-FgpmAw8Ge0CM,11201
|
|
37
|
-
pulumi_consul/get_datacenters.py,sha256=_e0ETyPODbqhhdYF4oa0E77ysrSoGviA7B0t8zrnkGo,3242
|
|
38
|
-
pulumi_consul/get_key_prefix.py,sha256=WCd-oR7CsZRvmufc2dK91kqIhde5pk3xnFB6ArxhkLs,11558
|
|
39
|
-
pulumi_consul/get_keys.py,sha256=ov0lh16DVEnD_rhoqi6Vnjdo7-N5EUbk8u9o5lh-dyA,10322
|
|
40
|
-
pulumi_consul/get_network_area_members.py,sha256=r9ccBPuCm-BQPvSj5wrIKP8Kw0V0Bwv9P_6oc4wEba8,7095
|
|
41
|
-
pulumi_consul/get_network_segments.py,sha256=qOTalyZatWHgvU9zIW__1P6zjZaMArwzIs7IU1oE7sw,5891
|
|
42
|
-
pulumi_consul/get_nodes.py,sha256=4REIH4iLnqckQp9x8aNSzp-J8JrerxSPkBIJxl-wdgA,6265
|
|
43
|
-
pulumi_consul/get_peering.py,sha256=SeEnn78WtGHre4AEMYShrUFTFxEUiqvzHimiMs3CT88,7412
|
|
44
|
-
pulumi_consul/get_peerings.py,sha256=9AgCs4CW_F4I04hQrGMidBtl5dporD-zekA0APIR6gk,3671
|
|
45
|
-
pulumi_consul/get_service.py,sha256=wOvvyhRpfP9kLX9UgTKTcF811JfEjhe6HIVlOXtqtGg,9712
|
|
46
|
-
pulumi_consul/get_service_health.py,sha256=kehg27sWGkZ1fjSkW10csrJHzfRn0fNLJr_Q7UIF-TE,11377
|
|
47
|
-
pulumi_consul/get_services.py,sha256=iUddW5Lb88d-l5mVX6x6QNnqS7sM_JHigSZJJILw0xs,7426
|
|
48
|
-
pulumi_consul/intention.py,sha256=SDoUf4UYU07-HUp7FEPdKQAxpqCHotHhuxVcMfovezc,26004
|
|
49
|
-
pulumi_consul/key_prefix.py,sha256=B22oizgA96yVBXbC6-su4RNR_WrNUpxA7A-FSvuymbc,25841
|
|
50
|
-
pulumi_consul/keys.py,sha256=RzNt_fHyvvOvYwJlctqFwbkZlj0S9MgWk1khrmHOFMw,17435
|
|
51
|
-
pulumi_consul/license.py,sha256=p4nsBwBkul7-WSxDFNzyxEfPn8gLKFQxI9tvFtSeJlY,20053
|
|
52
|
-
pulumi_consul/namespace.py,sha256=F77W-2-3qM6m2kkypeAszDRc_MfKDKT5KW6wJ4-GCPM,18195
|
|
53
|
-
pulumi_consul/namespace_policy_attachment.py,sha256=4Pk_jUGVnYgY1cDy6oaCpjmQlaCmROb0S8aQgoxOoXs,8374
|
|
54
|
-
pulumi_consul/namespace_role_attachment.py,sha256=A-igBKWmC02e3KCJs5DDnkiHExee5N7kt5AJJL3FqUY,8226
|
|
55
|
-
pulumi_consul/network_area.py,sha256=bI_FgL-aysSmJegkq5x_UhYIzHPMTUcOn0aiC_DeItI,19226
|
|
56
|
-
pulumi_consul/node.py,sha256=2SwmmHMjM0bghXFBAlZJPyVv-tU2du3nJuG5AsBalg4,17555
|
|
57
|
-
pulumi_consul/outputs.py,sha256=UURqdBYdNkJWe_akyyQQNv8e-QsOl9hXp6w4rye-ftE,234867
|
|
58
|
-
pulumi_consul/peering.py,sha256=bS_UJUz6eowyw5WMtAP1wD-M8AL4Rq3Hluo9i_TmGxo,20496
|
|
59
|
-
pulumi_consul/peering_token.py,sha256=hhBRd_buIV_D-hXapUJ725_Zk9fuMRumwnGjC9NBQsE,17440
|
|
60
|
-
pulumi_consul/prepared_query.py,sha256=vMgTgqJVl3wQBdjiPo_Z51ljj68OCn_DTkLNZcAfpzY,53756
|
|
61
|
-
pulumi_consul/provider.py,sha256=5ynqQUjyVBRdAFs_NwjC8zQUSkACQPRpvkVxGCat3KM,24946
|
|
62
|
-
pulumi_consul/pulumi-plugin.json,sha256=_wiIZikt2-8K-tkY4CZ_MyKG6rOuW0xlfgzFZyhKSYc,83
|
|
63
|
-
pulumi_consul/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
64
|
-
pulumi_consul/service.py,sha256=X55eUuJWjihVMXmk5ZFFluoMsdjenT9bbD-a4mEOCKg,34420
|
|
65
|
-
pulumi_consul/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
|
|
66
|
-
pulumi_consul/config/__init__.pyi,sha256=rrPQ7URZL_BWCKq07Iwc_Frfqou-b0Ahj6NuYbkfxEM,2761
|
|
67
|
-
pulumi_consul/config/outputs.py,sha256=HgcR6itSdkSOlzxeokvlaaJrgzyTfz8bz75ADODP-FY,3558
|
|
68
|
-
pulumi_consul/config/vars.py,sha256=T-72FGpp4_Alu2TD-XOrrcgVypf0QdwAzMzJn7TY8Rk,4429
|
|
69
|
-
pulumi_consul-3.12.3a1734111860.dist-info/METADATA,sha256=oHofTqVaKCdzUyEMSyfsj_QEB7YhIadL9l1cgx2jtRY,4007
|
|
70
|
-
pulumi_consul-3.12.3a1734111860.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
|
71
|
-
pulumi_consul-3.12.3a1734111860.dist-info/top_level.txt,sha256=SrKSXrIq8AWqnNKrd7pWSC691idGwXi9XMA-DTWwcfg,14
|
|
72
|
-
pulumi_consul-3.12.3a1734111860.dist-info/RECORD,,
|
|
File without changes
|