pulumi-consul 3.12.0a1713331566__py3-none-any.whl → 3.12.0a1713897703__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.
Files changed (51) hide show
  1. pulumi_consul/_inputs.py +22 -22
  2. pulumi_consul/acl_auth_method.py +4 -8
  3. pulumi_consul/acl_binding_rule.py +2 -4
  4. pulumi_consul/acl_policy.py +2 -6
  5. pulumi_consul/acl_role.py +11 -11
  6. pulumi_consul/acl_role_policy_attachment.py +8 -10
  7. pulumi_consul/acl_token.py +14 -14
  8. pulumi_consul/admin_partition.py +6 -6
  9. pulumi_consul/agent_service.py +2 -4
  10. pulumi_consul/autopilot_config.py +0 -4
  11. pulumi_consul/catalog_entry.py +0 -46
  12. pulumi_consul/config_entry.py +52 -46
  13. pulumi_consul/config_entry_service_defaults.py +21 -21
  14. pulumi_consul/config_entry_service_intentions.py +27 -27
  15. pulumi_consul/config_entry_service_resolver.py +57 -59
  16. pulumi_consul/config_entry_service_router.py +21 -61
  17. pulumi_consul/config_entry_service_splitter.py +22 -20
  18. pulumi_consul/get_acl_auth_method.py +0 -4
  19. pulumi_consul/get_acl_policy.py +0 -4
  20. pulumi_consul/get_acl_role.py +2 -4
  21. pulumi_consul/get_acl_token.py +0 -4
  22. pulumi_consul/get_acl_token_secret_id.py +8 -10
  23. pulumi_consul/get_agent_config.py +0 -4
  24. pulumi_consul/get_autopilot_health.py +0 -4
  25. pulumi_consul/get_catalog_service.py +30 -4
  26. pulumi_consul/get_catalog_services.py +32 -0
  27. pulumi_consul/get_key_prefix.py +18 -26
  28. pulumi_consul/get_keys.py +4 -10
  29. pulumi_consul/get_network_area_members.py +6 -10
  30. pulumi_consul/get_network_segments.py +4 -8
  31. pulumi_consul/get_peering.py +0 -4
  32. pulumi_consul/get_peerings.py +0 -4
  33. pulumi_consul/get_service.py +30 -4
  34. pulumi_consul/get_services.py +32 -0
  35. pulumi_consul/intention.py +10 -18
  36. pulumi_consul/key_prefix.py +26 -30
  37. pulumi_consul/keys.py +6 -10
  38. pulumi_consul/license.py +4 -6
  39. pulumi_consul/namespace.py +2 -4
  40. pulumi_consul/network_area.py +0 -4
  41. pulumi_consul/node.py +6 -6
  42. pulumi_consul/outputs.py +22 -22
  43. pulumi_consul/peering.py +8 -22
  44. pulumi_consul/peering_token.py +0 -4
  45. pulumi_consul/prepared_query.py +63 -63
  46. pulumi_consul/service.py +79 -17
  47. {pulumi_consul-3.12.0a1713331566.dist-info → pulumi_consul-3.12.0a1713897703.dist-info}/METADATA +1 -1
  48. pulumi_consul-3.12.0a1713897703.dist-info/RECORD +70 -0
  49. pulumi_consul-3.12.0a1713331566.dist-info/RECORD +0 -70
  50. {pulumi_consul-3.12.0a1713331566.dist-info → pulumi_consul-3.12.0a1713897703.dist-info}/WHEEL +0 -0
  51. {pulumi_consul-3.12.0a1713331566.dist-info → pulumi_consul-3.12.0a1713897703.dist-info}/top_level.txt +0 -0
pulumi_consul/service.py CHANGED
@@ -36,7 +36,7 @@ class ServiceArgs:
36
36
  :param pulumi.Input[str] datacenter: The datacenter to use. This overrides the agent's default datacenter and the datacenter in the provider setup.
37
37
  :param pulumi.Input[bool] enable_tag_override: Specifies to disable the anti-entropy feature for this service's tags. Defaults to `false`.
38
38
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] meta: A map of arbitrary KV metadata linked to the service instance.
39
- :param pulumi.Input[str] name: The name of the header.
39
+ :param pulumi.Input[str] name: The name of the service.
40
40
  :param pulumi.Input[str] namespace: The namespace to create the service within.
41
41
  :param pulumi.Input[str] partition: The partition the service is associated with.
42
42
  :param pulumi.Input[int] port: The port of the service.
@@ -157,7 +157,7 @@ class ServiceArgs:
157
157
  @pulumi.getter
158
158
  def name(self) -> Optional[pulumi.Input[str]]:
159
159
  """
160
- The name of the header.
160
+ The name of the service.
161
161
  """
162
162
  return pulumi.get(self, "name")
163
163
 
@@ -248,7 +248,7 @@ class _ServiceState:
248
248
  :param pulumi.Input[str] datacenter: The datacenter to use. This overrides the agent's default datacenter and the datacenter in the provider setup.
249
249
  :param pulumi.Input[bool] enable_tag_override: Specifies to disable the anti-entropy feature for this service's tags. Defaults to `false`.
250
250
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] meta: A map of arbitrary KV metadata linked to the service instance.
251
- :param pulumi.Input[str] name: The name of the header.
251
+ :param pulumi.Input[str] name: The name of the service.
252
252
  :param pulumi.Input[str] namespace: The namespace to create the service within.
253
253
  :param pulumi.Input[str] node: The name of the node the to register the service on.
254
254
  :param pulumi.Input[str] partition: The partition the service is associated with.
@@ -359,7 +359,7 @@ class _ServiceState:
359
359
  @pulumi.getter
360
360
  def name(self) -> Optional[pulumi.Input[str]]:
361
361
  """
362
- The name of the header.
362
+ The name of the service.
363
363
  """
364
364
  return pulumi.get(self, "name")
365
365
 
@@ -473,41 +473,72 @@ class Service(pulumi.CustomResource):
473
473
 
474
474
  Creating a new node with the service:
475
475
 
476
- <!--Start PulumiCodeChooser -->
477
476
  ```python
478
477
  import pulumi
479
478
  import pulumi_consul as consul
480
479
 
481
- compute = consul.Node("compute", address="www.google.com")
480
+ compute = consul.Node("compute",
481
+ name="compute-google",
482
+ address="www.google.com")
482
483
  google = consul.Service("google",
484
+ name="google",
483
485
  node=compute.name,
484
486
  port=80,
485
487
  tags=["tag0"])
486
488
  ```
487
- <!--End PulumiCodeChooser -->
488
489
 
489
490
  Utilizing an existing known node:
490
491
 
491
- <!--Start PulumiCodeChooser -->
492
492
  ```python
493
493
  import pulumi
494
494
  import pulumi_consul as consul
495
495
 
496
496
  google = consul.Service("google",
497
+ name="google",
497
498
  node="google",
498
499
  port=443)
499
500
  ```
500
- <!--End PulumiCodeChooser -->
501
501
 
502
502
  Register a health-check:
503
503
 
504
+ ```python
505
+ import pulumi
506
+ import pulumi_consul as consul
507
+
508
+ redis = consul.Service("redis",
509
+ name="redis",
510
+ node="redis",
511
+ port=6379,
512
+ checks=[consul.ServiceCheckArgs(
513
+ check_id="service:redis1",
514
+ name="Redis health check",
515
+ status="passing",
516
+ http="https://www.hashicorptest.com",
517
+ tls_skip_verify=False,
518
+ method="PUT",
519
+ interval="5s",
520
+ timeout="1s",
521
+ deregister_critical_service_after="30s",
522
+ headers=[
523
+ consul.ServiceCheckHeaderArgs(
524
+ name="foo",
525
+ values=["test"],
526
+ ),
527
+ consul.ServiceCheckHeaderArgs(
528
+ name="bar",
529
+ values=["test"],
530
+ ),
531
+ ],
532
+ )])
533
+ ```
534
+
504
535
  :param str resource_name: The name of the resource.
505
536
  :param pulumi.ResourceOptions opts: Options for the resource.
506
537
  :param pulumi.Input[str] address: The address of the service. Defaults to the address of the node.
507
538
  :param pulumi.Input[str] datacenter: The datacenter to use. This overrides the agent's default datacenter and the datacenter in the provider setup.
508
539
  :param pulumi.Input[bool] enable_tag_override: Specifies to disable the anti-entropy feature for this service's tags. Defaults to `false`.
509
540
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] meta: A map of arbitrary KV metadata linked to the service instance.
510
- :param pulumi.Input[str] name: The name of the header.
541
+ :param pulumi.Input[str] name: The name of the service.
511
542
  :param pulumi.Input[str] namespace: The namespace to create the service within.
512
543
  :param pulumi.Input[str] node: The name of the node the to register the service on.
513
544
  :param pulumi.Input[str] partition: The partition the service is associated with.
@@ -535,34 +566,65 @@ class Service(pulumi.CustomResource):
535
566
 
536
567
  Creating a new node with the service:
537
568
 
538
- <!--Start PulumiCodeChooser -->
539
569
  ```python
540
570
  import pulumi
541
571
  import pulumi_consul as consul
542
572
 
543
- compute = consul.Node("compute", address="www.google.com")
573
+ compute = consul.Node("compute",
574
+ name="compute-google",
575
+ address="www.google.com")
544
576
  google = consul.Service("google",
577
+ name="google",
545
578
  node=compute.name,
546
579
  port=80,
547
580
  tags=["tag0"])
548
581
  ```
549
- <!--End PulumiCodeChooser -->
550
582
 
551
583
  Utilizing an existing known node:
552
584
 
553
- <!--Start PulumiCodeChooser -->
554
585
  ```python
555
586
  import pulumi
556
587
  import pulumi_consul as consul
557
588
 
558
589
  google = consul.Service("google",
590
+ name="google",
559
591
  node="google",
560
592
  port=443)
561
593
  ```
562
- <!--End PulumiCodeChooser -->
563
594
 
564
595
  Register a health-check:
565
596
 
597
+ ```python
598
+ import pulumi
599
+ import pulumi_consul as consul
600
+
601
+ redis = consul.Service("redis",
602
+ name="redis",
603
+ node="redis",
604
+ port=6379,
605
+ checks=[consul.ServiceCheckArgs(
606
+ check_id="service:redis1",
607
+ name="Redis health check",
608
+ status="passing",
609
+ http="https://www.hashicorptest.com",
610
+ tls_skip_verify=False,
611
+ method="PUT",
612
+ interval="5s",
613
+ timeout="1s",
614
+ deregister_critical_service_after="30s",
615
+ headers=[
616
+ consul.ServiceCheckHeaderArgs(
617
+ name="foo",
618
+ values=["test"],
619
+ ),
620
+ consul.ServiceCheckHeaderArgs(
621
+ name="bar",
622
+ values=["test"],
623
+ ),
624
+ ],
625
+ )])
626
+ ```
627
+
566
628
  :param str resource_name: The name of the resource.
567
629
  :param ServiceArgs args: The arguments to use to populate this resource's properties.
568
630
  :param pulumi.ResourceOptions opts: Options for the resource.
@@ -649,7 +711,7 @@ class Service(pulumi.CustomResource):
649
711
  :param pulumi.Input[str] datacenter: The datacenter to use. This overrides the agent's default datacenter and the datacenter in the provider setup.
650
712
  :param pulumi.Input[bool] enable_tag_override: Specifies to disable the anti-entropy feature for this service's tags. Defaults to `false`.
651
713
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] meta: A map of arbitrary KV metadata linked to the service instance.
652
- :param pulumi.Input[str] name: The name of the header.
714
+ :param pulumi.Input[str] name: The name of the service.
653
715
  :param pulumi.Input[str] namespace: The namespace to create the service within.
654
716
  :param pulumi.Input[str] node: The name of the node the to register the service on.
655
717
  :param pulumi.Input[str] partition: The partition the service is associated with.
@@ -725,7 +787,7 @@ class Service(pulumi.CustomResource):
725
787
  @pulumi.getter
726
788
  def name(self) -> pulumi.Output[str]:
727
789
  """
728
- The name of the header.
790
+ The name of the service.
729
791
  """
730
792
  return pulumi.get(self, "name")
731
793
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pulumi_consul
3
- Version: 3.12.0a1713331566
3
+ Version: 3.12.0a1713897703
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
@@ -0,0 +1,70 @@
1
+ pulumi_consul/__init__.py,sha256=WEdXDw8m0r_d5zps4HIp-KZjaIErfJLypM_JVn9whIA,8027
2
+ pulumi_consul/_inputs.py,sha256=VJByst-fIE19jbgoNEvXuyQJN74w7ICOyvq13ZexjCI,217105
3
+ pulumi_consul/_utilities.py,sha256=b6gJn0IIeM1t6Q7EVjqw3yhuGyP-uENQhtL5yp7aHR8,9248
4
+ pulumi_consul/acl_auth_method.py,sha256=TYhT6uOPRcXS3nugKF3umJHjPxeqplGosY_XqcMl0NM,32885
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=SgNXcjc-AJRZOW8mxOu8Yx4Nqpk5TJBfIRTBdikraZA,17763
16
+ pulumi_consul/certificate_authority.py,sha256=KV0uvGM4e4yC7zgoh0_DhwhyVolNvGU6F_4r8bsMkU0,14385
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/get_acl_auth_method.py,sha256=9b56fzKS3TQTKM93R-E30Xc5sGXS-lGYR-wIF3dypLc,9505
24
+ pulumi_consul/get_acl_policy.py,sha256=LFQlcq2jS7ptdGTWr9Dos9Wq64gqeTv8GNM4G88SNVU,5926
25
+ pulumi_consul/get_acl_role.py,sha256=Rcbne_FKhB2lNSQEj5P87n68uO9hjGRWDx-IJZC-x2o,7581
26
+ pulumi_consul/get_acl_token.py,sha256=7n2WTxRrF-zrYQRmFfy4jLXYjsLsoCQ5s81gVqvEKwU,9808
27
+ pulumi_consul/get_acl_token_secret_id.py,sha256=tQYhYIWXmNT6VP_zimJDetb3PXW8-oBZdn5KqYmDQkg,6869
28
+ pulumi_consul/get_agent_config.py,sha256=F6Khi2DZQROdaxOQVNe2iJtVXroLDICQfQ3t_shRodE,5959
29
+ pulumi_consul/get_agent_self.py,sha256=-cw13p0lRJLyj8qvQp06ZZ5c18JatSdw1am6QoJZqnE,43212
30
+ pulumi_consul/get_autopilot_health.py,sha256=WKtlV88Q7C3JHVaHa6Sa7p7aXeggEXfQaLQXz3ZVwRY,5266
31
+ pulumi_consul/get_catalog_nodes.py,sha256=nZZIzVkm74PtG34IlKugBZnX3adeQyOSNmoZz_mHKIE,5881
32
+ pulumi_consul/get_catalog_service.py,sha256=yqx5jEJHt-lvAodRu-jgEOeSMr8PS_EqdzDQpvDM8oY,9233
33
+ pulumi_consul/get_catalog_services.py,sha256=gGR6oN9YncIZSrYY-duOTDChzj5ubje0wMrWVlSzEDE,7110
34
+ pulumi_consul/get_config_entry.py,sha256=8pHLWLT5RUVPiJj5zU2VV1xkGsT9JpLsmVwxeqbEpzE,5478
35
+ pulumi_consul/get_datacenters.py,sha256=WNivbaPSVbCtwHtvdRjljUti1YWaOJtqxBBc-_7IFEc,2669
36
+ pulumi_consul/get_key_prefix.py,sha256=1Xk9NzX3JRGVqFhWMls1EG3eJaqu0LbFyBhhZCcpYlY,10511
37
+ pulumi_consul/get_keys.py,sha256=019DmVUvluUJCaY9SX5hdNdrRFfj6iKgg5zIWaPDx7U,9391
38
+ pulumi_consul/get_network_area_members.py,sha256=N3Ub1clQq_YXSjWfeiMUQHwVYKKfuP2-z4VyDPVmNnc,6466
39
+ pulumi_consul/get_network_segments.py,sha256=-DGSkdohpMeFu8RqvVSytCKbWIbUO4KIC2P-B1Ao0sY,5343
40
+ pulumi_consul/get_nodes.py,sha256=ZcKZWIWuWgclQGj4QYTqKdhvQcSI_rxYZrlBakLRvsA,5359
41
+ pulumi_consul/get_peering.py,sha256=Bcpy_TCMVuHrmzWWM5GRTLiaZq5gGJuZYcis9JCMraE,6300
42
+ pulumi_consul/get_peerings.py,sha256=EX1J_eQf01voOEvPB2IuWV6HNdvTeTpn_bbuY0gQ9QQ,3024
43
+ pulumi_consul/get_service.py,sha256=HV1p2U59QDgDbq5jzpF3R0ProYET9xM-zxvu_3urIjE,8631
44
+ pulumi_consul/get_service_health.py,sha256=2CCrunPsyCDOjmcJXhGmSIJSMc6a-0vlvuiEAVJ80Dw,10133
45
+ pulumi_consul/get_services.py,sha256=2YIBv7zSuGuiGvFotifO_193lcuwPim6Us_IGTKPD8g,6571
46
+ pulumi_consul/intention.py,sha256=naX-vekDSLky5qeApRsqjCxralnpkcyBp-upO3fUd3g,25830
47
+ pulumi_consul/key_prefix.py,sha256=Yf1q4dm5Acq4Awk6Eh9opgiFrVk1a-3RcYbO-wlxU8k,26215
48
+ pulumi_consul/keys.py,sha256=pSGIYmA6ek1qIgbMKaIhzS2Tfpy4HC9PJgaqzkRCR7I,17869
49
+ pulumi_consul/license.py,sha256=OMJsth0jpRMssJjJ64UTUZSdm8eXD_DJA40Wliy0MmI,19879
50
+ pulumi_consul/namespace.py,sha256=CJZE9TgWD0bdKndmb8hlyyWIttNUPJou0k5LJBjyK2E,18021
51
+ pulumi_consul/namespace_policy_attachment.py,sha256=0qlJ92SJLDdocHj8dmm0cd1LAqF-IlB5FouYhUOyATo,8200
52
+ pulumi_consul/namespace_role_attachment.py,sha256=-xlic3f_MQ7JN0i0aNPEvSD7pT8vzrM0fvlUB7KLOoY,8052
53
+ pulumi_consul/network_area.py,sha256=YmboKpGWDpugJ79JXiBrIRJy50m5zHwKgL48Bf0909U,19676
54
+ pulumi_consul/node.py,sha256=yHmlQrpuPQ7250pjl3voR_csUlZmHpQC3EWF9WZtBC4,18005
55
+ pulumi_consul/outputs.py,sha256=QoiPqPKtAGnSzYPxu0m5ylL7k397wovPzQEmyTEpoWU,234783
56
+ pulumi_consul/peering.py,sha256=B2_vXke9-rZ2IiFiQRddhW8lDJex8PFtMFqzR5IR6Rc,20322
57
+ pulumi_consul/peering_token.py,sha256=DMm2gBJ2DaTygdsX99QpXxJaMmdqzEazpm7i2e8P1H8,14065
58
+ pulumi_consul/prepared_query.py,sha256=FZk5ErrLld89cHMEEgk1jNoJL9wbPP_KDSyTEuPz8gM,54153
59
+ pulumi_consul/provider.py,sha256=1xhCm2DWQ1CuCIy7sDnl_lzHDj4wtS2mc3OH7vQaToU,24679
60
+ pulumi_consul/pulumi-plugin.json,sha256=VXjlQuI-OEXhtFLQdyJ645kCumRQ-G5oWRM1hutS4zM,43
61
+ pulumi_consul/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
62
+ pulumi_consul/service.py,sha256=0d-xn84DWLG-BRGFXupJXnoMRXaQ_yrtf9CR49o0WIo,34669
63
+ pulumi_consul/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
64
+ pulumi_consul/config/__init__.pyi,sha256=Xr56VkEbCA8jXnSDMCxONcnilMpQdAHs6-imo_c-TBU,2587
65
+ pulumi_consul/config/outputs.py,sha256=gDtRkTfR9uCq26RXew73SpJWdrCejHeWHhoL5--_LW4,3384
66
+ pulumi_consul/config/vars.py,sha256=SXNUccmf6RtLkyaTd4mMknJtP2rlISHxMcq4PUHRgpg,4255
67
+ pulumi_consul-3.12.0a1713897703.dist-info/METADATA,sha256=YUBqTG1L_Kah6kQ3prhK5zYMfjBlqIyuGp2Qcf1bl20,3944
68
+ pulumi_consul-3.12.0a1713897703.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
69
+ pulumi_consul-3.12.0a1713897703.dist-info/top_level.txt,sha256=SrKSXrIq8AWqnNKrd7pWSC691idGwXi9XMA-DTWwcfg,14
70
+ pulumi_consul-3.12.0a1713897703.dist-info/RECORD,,
@@ -1,70 +0,0 @@
1
- pulumi_consul/__init__.py,sha256=WEdXDw8m0r_d5zps4HIp-KZjaIErfJLypM_JVn9whIA,8027
2
- pulumi_consul/_inputs.py,sha256=Y0SM0tucOqZ0WhBtR2ozXTkoALk9fqpGJaqTrlpM_D8,217041
3
- pulumi_consul/_utilities.py,sha256=b6gJn0IIeM1t6Q7EVjqw3yhuGyP-uENQhtL5yp7aHR8,9248
4
- pulumi_consul/acl_auth_method.py,sha256=aiUGuGWvwI9NIbtdgEIg9ZEoT9y5My9KwdoU4zYI5YA,33087
5
- pulumi_consul/acl_binding_rule.py,sha256=jVuC08OiIoiM9myAPJDAmF_K1Ft2MgO-EoLZTsywtzM,22832
6
- pulumi_consul/acl_policy.py,sha256=33_ks-t5DAvDlrbfxEUzbybmcRk63tQplXLkvvSrhBI,15722
7
- pulumi_consul/acl_role.py,sha256=014DshuxiD3zusbI4P8pW5rblt-enJhPGtGHC1aJve0,24150
8
- pulumi_consul/acl_role_policy_attachment.py,sha256=ftXBcVVeYM0cfHEnkuy7nJbvu__fxsaNlfQ2janll8w,8679
9
- pulumi_consul/acl_token.py,sha256=G85RzcvLRd7yqGzbJX3R6e7wulnW-4yWMkSKiGyGLqk,31483
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=I_u4oYHj-PPNM1-5OxLN0pPu7cKuEF_ho6HYw9FK1uk,8663
13
- pulumi_consul/agent_service.py,sha256=eG43TMRo_91t9nfM9DZ8r65yYWwSe3W1bXtWuqeRoJs,13089
14
- pulumi_consul/autopilot_config.py,sha256=cVfU9Mh4dSqxAtqNw5mSZwF7IlXiIH-UsyW8Fl8ZYV0,28179
15
- pulumi_consul/catalog_entry.py,sha256=n_iirVpenRKG7_547HwPSGs9V2503tgRyhmTqqAesZM,18949
16
- pulumi_consul/certificate_authority.py,sha256=KV0uvGM4e4yC7zgoh0_DhwhyVolNvGU6F_4r8bsMkU0,14385
17
- pulumi_consul/config_entry.py,sha256=SmfzzuYn3F8noeAL3cy4PZVsM7RtDfixaR87oI7znOM,30510
18
- pulumi_consul/config_entry_service_defaults.py,sha256=NEWQuq9H4yZfgem7wyss5Zx8c9d7W40pFYWjgdv75d0,52638
19
- pulumi_consul/config_entry_service_intentions.py,sha256=XKcbpbDnUnftgcHauhaYlI2WNvXajbEAOOcyqUH2bRk,22682
20
- pulumi_consul/config_entry_service_resolver.py,sha256=SVqC3tPWjjiVFol9LffH-0mtUramvFSjMr6OYETtjTg,35945
21
- pulumi_consul/config_entry_service_router.py,sha256=jQjhFjttiWv0f1fONybipn3JsGpLQ_g7AwCKLEfsr-o,16960
22
- pulumi_consul/config_entry_service_splitter.py,sha256=QWY7JZsl40yf0k2LHnPY3-7_WzHiVTJxbiq08GbtjOI,20354
23
- pulumi_consul/get_acl_auth_method.py,sha256=DCcl53wetlkmDw5HHrvPCKq8llPN4e1GarQkXJzZwcI,9645
24
- pulumi_consul/get_acl_policy.py,sha256=GPoln4Z9pJMG9nVYegoJf_XyI7pMGI1dWzaDVSiwX44,6066
25
- pulumi_consul/get_acl_role.py,sha256=UTkbbvlf7OXlLK7n2ysm9AzNxjYPZG8KSbY7p_lyzbo,7627
26
- pulumi_consul/get_acl_token.py,sha256=1nnw-g3CIxH1l9WRrv9NhzrQUcsA4mPxjdgXDkU_bsU,9948
27
- pulumi_consul/get_acl_token_secret_id.py,sha256=wMWYRAHpM-ebyzAOpHLftJRAj9pnGe4qWHZx68UEw9I,7045
28
- pulumi_consul/get_agent_config.py,sha256=6DY5BK6_DTGkNz3Z-ghSy9qpyhrgMoOGA8zlmkRttxw,6099
29
- pulumi_consul/get_agent_self.py,sha256=-cw13p0lRJLyj8qvQp06ZZ5c18JatSdw1am6QoJZqnE,43212
30
- pulumi_consul/get_autopilot_health.py,sha256=5891L7T78VCuGE_VLh0VD3TZBgnu-elyTRwtQrjUSSA,5406
31
- pulumi_consul/get_catalog_nodes.py,sha256=nZZIzVkm74PtG34IlKugBZnX3adeQyOSNmoZz_mHKIE,5881
32
- pulumi_consul/get_catalog_service.py,sha256=U3aR3Nnbx5ZgdOzBhQFyFpxbwD2nbjKVxgt0psWZ0ZA,8753
33
- pulumi_consul/get_catalog_services.py,sha256=C19KcxqjgTS_rc2m_xhNZCt-iEeepcx-l726gA-Kj24,6190
34
- pulumi_consul/get_config_entry.py,sha256=8pHLWLT5RUVPiJj5zU2VV1xkGsT9JpLsmVwxeqbEpzE,5478
35
- pulumi_consul/get_datacenters.py,sha256=WNivbaPSVbCtwHtvdRjljUti1YWaOJtqxBBc-_7IFEc,2669
36
- pulumi_consul/get_key_prefix.py,sha256=0ENz8hzYFSQlhzMSD2OiJbWJRzL2ymF8YR5Wrz_luss,10915
37
- pulumi_consul/get_keys.py,sha256=K1lMx4Wgx-XE4VpxHP0ML950T02TzmxWjnL7yVMiPr4,9589
38
- pulumi_consul/get_network_area_members.py,sha256=c5BtALRo3Q1_PNTx4TUrarWftDP9KVSX_1t4x91dUEI,6712
39
- pulumi_consul/get_network_segments.py,sha256=nggXIInwqO0SXSs1_rn7HiwqeU1qwQ3I6OqD2bfSiho,5551
40
- pulumi_consul/get_nodes.py,sha256=ZcKZWIWuWgclQGj4QYTqKdhvQcSI_rxYZrlBakLRvsA,5359
41
- pulumi_consul/get_peering.py,sha256=UQFjDdpWxfWglJ-7t1BH6zwu1pkS_nVJ3cSVpuZu-Ag,6440
42
- pulumi_consul/get_peerings.py,sha256=NS1nnjxppR2aYqs_vS_EAhStZ8c4bAg7EhUXjFuoPsc,3164
43
- pulumi_consul/get_service.py,sha256=Xv2tI5oitx7Cf6ujV_2wnmGtw0n0MPjy4MCWKettAQ0,8151
44
- pulumi_consul/get_service_health.py,sha256=2CCrunPsyCDOjmcJXhGmSIJSMc6a-0vlvuiEAVJ80Dw,10133
45
- pulumi_consul/get_services.py,sha256=Q5d4qGcOTPTopkbdx0pTpgO3Gt5JAglPXM-4dpk0fek,5651
46
- pulumi_consul/intention.py,sha256=ho1l5csC-byPz5CgHmX5qxNsFmptRz9aVZr27VEppGY,26148
47
- pulumi_consul/key_prefix.py,sha256=WJGpLgmCyU9cL9pAG6tjSrZjKZBcB4YSAQTiIJsa1Dg,26573
48
- pulumi_consul/keys.py,sha256=muGKdHQej6ptl77B4cyYmuysMJOrUYAuiiDrg94USts,18033
49
- pulumi_consul/license.py,sha256=XHUy7eN03nJM7wUnRUf1G7xYnd9b41iJ1fgXXts9hSI,19991
50
- pulumi_consul/namespace.py,sha256=fPAJPoONW7gqanL8wxmVwbGVVo_zNMIsRaLwIHF4mHE,18115
51
- pulumi_consul/namespace_policy_attachment.py,sha256=0qlJ92SJLDdocHj8dmm0cd1LAqF-IlB5FouYhUOyATo,8200
52
- pulumi_consul/namespace_role_attachment.py,sha256=-xlic3f_MQ7JN0i0aNPEvSD7pT8vzrM0fvlUB7KLOoY,8052
53
- pulumi_consul/network_area.py,sha256=_JuwzK8mj1cxHqoqIb9T_qrX0MEOGO4Cnx3f4KelV8g,19832
54
- pulumi_consul/node.py,sha256=47QPrYj6vN7rQXutZYS0MWnNCktn583H5w2VDnuwHfE,18083
55
- pulumi_consul/outputs.py,sha256=dwKmGFjl7cIpJvBW6p5Qwkdqgz8q3iEKsl3VKEOPV_k,234719
56
- pulumi_consul/peering.py,sha256=pu4AiOobus3AJkWCuY3oE3mTUJhOJohl6Vrazw2IrZk,21220
57
- pulumi_consul/peering_token.py,sha256=c1fFWbNBqKnNQmEt4U3mGZ9Mr5c5e2j2hnw0o4yHGqw,14221
58
- pulumi_consul/prepared_query.py,sha256=v4xlennYoTLZStCTDeDAFryiYIbStHYocx1dLQQZHBM,53868
59
- pulumi_consul/provider.py,sha256=1xhCm2DWQ1CuCIy7sDnl_lzHDj4wtS2mc3OH7vQaToU,24679
60
- pulumi_consul/pulumi-plugin.json,sha256=VXjlQuI-OEXhtFLQdyJ645kCumRQ-G5oWRM1hutS4zM,43
61
- pulumi_consul/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
62
- pulumi_consul/service.py,sha256=lbt1Fg7iDD6odUK-vBe-h9KB9zMx49JW1S-YmWjkaBs,32818
63
- pulumi_consul/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
64
- pulumi_consul/config/__init__.pyi,sha256=Xr56VkEbCA8jXnSDMCxONcnilMpQdAHs6-imo_c-TBU,2587
65
- pulumi_consul/config/outputs.py,sha256=gDtRkTfR9uCq26RXew73SpJWdrCejHeWHhoL5--_LW4,3384
66
- pulumi_consul/config/vars.py,sha256=SXNUccmf6RtLkyaTd4mMknJtP2rlISHxMcq4PUHRgpg,4255
67
- pulumi_consul-3.12.0a1713331566.dist-info/METADATA,sha256=9--3zKk4DY2_jkl-M-nIrAT3fy2p-0AVr6k6rAWrfhM,3944
68
- pulumi_consul-3.12.0a1713331566.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
69
- pulumi_consul-3.12.0a1713331566.dist-info/top_level.txt,sha256=SrKSXrIq8AWqnNKrd7pWSC691idGwXi9XMA-DTWwcfg,14
70
- pulumi_consul-3.12.0a1713331566.dist-info/RECORD,,