pulumi-consul 3.12.0a1710156214__py3-none-any.whl → 3.13.0a1736849276__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/__init__.py +10 -0
- pulumi_consul/_inputs.py +1592 -31
- pulumi_consul/_utilities.py +41 -5
- pulumi_consul/acl_auth_method.py +17 -22
- pulumi_consul/acl_binding_rule.py +12 -9
- pulumi_consul/acl_policy.py +7 -6
- pulumi_consul/acl_role.py +37 -32
- pulumi_consul/acl_role_policy_attachment.py +13 -10
- pulumi_consul/acl_token.py +34 -29
- pulumi_consul/acl_token_policy_attachment.py +5 -0
- pulumi_consul/acl_token_role_attachment.py +5 -0
- pulumi_consul/admin_partition.py +11 -6
- pulumi_consul/agent_service.py +7 -4
- pulumi_consul/autopilot_config.py +5 -4
- pulumi_consul/catalog_entry.py +16 -66
- pulumi_consul/certificate_authority.py +8 -49
- pulumi_consul/config/__init__.pyi +5 -0
- pulumi_consul/config/outputs.py +5 -0
- pulumi_consul/config/vars.py +5 -0
- pulumi_consul/config_entry.py +57 -46
- pulumi_consul/config_entry_service_defaults.py +54 -49
- pulumi_consul/config_entry_service_intentions.py +80 -75
- pulumi_consul/config_entry_service_resolver.py +94 -91
- pulumi_consul/config_entry_service_router.py +31 -66
- pulumi_consul/config_entry_service_splitter.py +102 -95
- pulumi_consul/config_entry_v2_exported_services.py +479 -0
- pulumi_consul/get_acl_auth_method.py +26 -12
- pulumi_consul/get_acl_policy.py +20 -9
- pulumi_consul/get_acl_role.py +24 -9
- pulumi_consul/get_acl_token.py +25 -9
- pulumi_consul/get_acl_token_secret_id.py +29 -15
- pulumi_consul/get_agent_config.py +17 -9
- pulumi_consul/get_agent_self.py +82 -5
- pulumi_consul/get_autopilot_health.py +16 -9
- pulumi_consul/get_catalog_nodes.py +21 -9
- pulumi_consul/get_catalog_service.py +56 -13
- pulumi_consul/get_catalog_services.py +53 -9
- pulumi_consul/get_config_entry.py +20 -5
- pulumi_consul/get_config_entry_v2_exported_services.py +232 -0
- pulumi_consul/get_datacenters.py +12 -5
- pulumi_consul/get_key_prefix.py +55 -46
- pulumi_consul/get_keys.py +44 -34
- pulumi_consul/get_network_area_members.py +26 -20
- pulumi_consul/get_network_segments.py +22 -18
- pulumi_consul/get_nodes.py +21 -9
- pulumi_consul/get_peering.py +22 -9
- pulumi_consul/get_peerings.py +14 -9
- pulumi_consul/get_service.py +56 -13
- pulumi_consul/get_service_health.py +28 -5
- pulumi_consul/get_services.py +53 -9
- pulumi_consul/intention.py +15 -18
- pulumi_consul/key_prefix.py +42 -50
- pulumi_consul/keys.py +26 -34
- pulumi_consul/license.py +9 -6
- pulumi_consul/namespace.py +7 -4
- pulumi_consul/namespace_policy_attachment.py +5 -0
- pulumi_consul/namespace_role_attachment.py +5 -0
- pulumi_consul/network_area.py +11 -19
- pulumi_consul/node.py +17 -21
- pulumi_consul/outputs.py +30 -27
- pulumi_consul/peering.py +13 -22
- pulumi_consul/peering_token.py +55 -15
- pulumi_consul/prepared_query.py +99 -103
- pulumi_consul/provider.py +11 -6
- pulumi_consul/pulumi-plugin.json +2 -1
- pulumi_consul/service.py +90 -29
- {pulumi_consul-3.12.0a1710156214.dist-info → pulumi_consul-3.13.0a1736849276.dist-info}/METADATA +7 -6
- pulumi_consul-3.13.0a1736849276.dist-info/RECORD +72 -0
- {pulumi_consul-3.12.0a1710156214.dist-info → pulumi_consul-3.13.0a1736849276.dist-info}/WHEEL +1 -1
- pulumi_consul-3.12.0a1710156214.dist-info/RECORD +0 -70
- {pulumi_consul-3.12.0a1710156214.dist-info → pulumi_consul-3.13.0a1736849276.dist-info}/top_level.txt +0 -0
pulumi_consul/service.py
CHANGED
|
@@ -4,9 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
+
import sys
|
|
7
8
|
import pulumi
|
|
8
9
|
import pulumi.runtime
|
|
9
10
|
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
|
|
10
15
|
from . import _utilities
|
|
11
16
|
from . import outputs
|
|
12
17
|
from ._inputs import *
|
|
@@ -36,7 +41,7 @@ class ServiceArgs:
|
|
|
36
41
|
:param pulumi.Input[str] datacenter: The datacenter to use. This overrides the agent's default datacenter and the datacenter in the provider setup.
|
|
37
42
|
:param pulumi.Input[bool] enable_tag_override: Specifies to disable the anti-entropy feature for this service's tags. Defaults to `false`.
|
|
38
43
|
: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
|
|
44
|
+
:param pulumi.Input[str] name: The name of the service.
|
|
40
45
|
:param pulumi.Input[str] namespace: The namespace to create the service within.
|
|
41
46
|
:param pulumi.Input[str] partition: The partition the service is associated with.
|
|
42
47
|
:param pulumi.Input[int] port: The port of the service.
|
|
@@ -131,10 +136,8 @@ class ServiceArgs:
|
|
|
131
136
|
|
|
132
137
|
@property
|
|
133
138
|
@pulumi.getter
|
|
139
|
+
@_utilities.deprecated("""The external field has been deprecated and does nothing.""")
|
|
134
140
|
def external(self) -> Optional[pulumi.Input[bool]]:
|
|
135
|
-
warnings.warn("""The external field has been deprecated and does nothing.""", DeprecationWarning)
|
|
136
|
-
pulumi.log.warn("""external is deprecated: The external field has been deprecated and does nothing.""")
|
|
137
|
-
|
|
138
141
|
return pulumi.get(self, "external")
|
|
139
142
|
|
|
140
143
|
@external.setter
|
|
@@ -157,7 +160,7 @@ class ServiceArgs:
|
|
|
157
160
|
@pulumi.getter
|
|
158
161
|
def name(self) -> Optional[pulumi.Input[str]]:
|
|
159
162
|
"""
|
|
160
|
-
The name of the
|
|
163
|
+
The name of the service.
|
|
161
164
|
"""
|
|
162
165
|
return pulumi.get(self, "name")
|
|
163
166
|
|
|
@@ -248,7 +251,7 @@ class _ServiceState:
|
|
|
248
251
|
:param pulumi.Input[str] datacenter: The datacenter to use. This overrides the agent's default datacenter and the datacenter in the provider setup.
|
|
249
252
|
:param pulumi.Input[bool] enable_tag_override: Specifies to disable the anti-entropy feature for this service's tags. Defaults to `false`.
|
|
250
253
|
: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
|
|
254
|
+
:param pulumi.Input[str] name: The name of the service.
|
|
252
255
|
:param pulumi.Input[str] namespace: The namespace to create the service within.
|
|
253
256
|
:param pulumi.Input[str] node: The name of the node the to register the service on.
|
|
254
257
|
:param pulumi.Input[str] partition: The partition the service is associated with.
|
|
@@ -333,10 +336,8 @@ class _ServiceState:
|
|
|
333
336
|
|
|
334
337
|
@property
|
|
335
338
|
@pulumi.getter
|
|
339
|
+
@_utilities.deprecated("""The external field has been deprecated and does nothing.""")
|
|
336
340
|
def external(self) -> Optional[pulumi.Input[bool]]:
|
|
337
|
-
warnings.warn("""The external field has been deprecated and does nothing.""", DeprecationWarning)
|
|
338
|
-
pulumi.log.warn("""external is deprecated: The external field has been deprecated and does nothing.""")
|
|
339
|
-
|
|
340
341
|
return pulumi.get(self, "external")
|
|
341
342
|
|
|
342
343
|
@external.setter
|
|
@@ -359,7 +360,7 @@ class _ServiceState:
|
|
|
359
360
|
@pulumi.getter
|
|
360
361
|
def name(self) -> Optional[pulumi.Input[str]]:
|
|
361
362
|
"""
|
|
362
|
-
The name of the
|
|
363
|
+
The name of the service.
|
|
363
364
|
"""
|
|
364
365
|
return pulumi.get(self, "name")
|
|
365
366
|
|
|
@@ -446,7 +447,7 @@ class Service(pulumi.CustomResource):
|
|
|
446
447
|
resource_name: str,
|
|
447
448
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
448
449
|
address: Optional[pulumi.Input[str]] = None,
|
|
449
|
-
checks: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
450
|
+
checks: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ServiceCheckArgs', 'ServiceCheckArgsDict']]]]] = None,
|
|
450
451
|
datacenter: Optional[pulumi.Input[str]] = None,
|
|
451
452
|
enable_tag_override: Optional[pulumi.Input[bool]] = None,
|
|
452
453
|
external: Optional[pulumi.Input[bool]] = None,
|
|
@@ -473,41 +474,72 @@ class Service(pulumi.CustomResource):
|
|
|
473
474
|
|
|
474
475
|
Creating a new node with the service:
|
|
475
476
|
|
|
476
|
-
<!--Start PulumiCodeChooser -->
|
|
477
477
|
```python
|
|
478
478
|
import pulumi
|
|
479
479
|
import pulumi_consul as consul
|
|
480
480
|
|
|
481
|
-
compute = consul.Node("compute",
|
|
481
|
+
compute = consul.Node("compute",
|
|
482
|
+
name="compute-google",
|
|
483
|
+
address="www.google.com")
|
|
482
484
|
google = consul.Service("google",
|
|
485
|
+
name="google",
|
|
483
486
|
node=compute.name,
|
|
484
487
|
port=80,
|
|
485
488
|
tags=["tag0"])
|
|
486
489
|
```
|
|
487
|
-
<!--End PulumiCodeChooser -->
|
|
488
490
|
|
|
489
491
|
Utilizing an existing known node:
|
|
490
492
|
|
|
491
|
-
<!--Start PulumiCodeChooser -->
|
|
492
493
|
```python
|
|
493
494
|
import pulumi
|
|
494
495
|
import pulumi_consul as consul
|
|
495
496
|
|
|
496
497
|
google = consul.Service("google",
|
|
498
|
+
name="google",
|
|
497
499
|
node="google",
|
|
498
500
|
port=443)
|
|
499
501
|
```
|
|
500
|
-
<!--End PulumiCodeChooser -->
|
|
501
502
|
|
|
502
503
|
Register a health-check:
|
|
503
504
|
|
|
505
|
+
```python
|
|
506
|
+
import pulumi
|
|
507
|
+
import pulumi_consul as consul
|
|
508
|
+
|
|
509
|
+
redis = consul.Service("redis",
|
|
510
|
+
name="redis",
|
|
511
|
+
node="redis",
|
|
512
|
+
port=6379,
|
|
513
|
+
checks=[{
|
|
514
|
+
"check_id": "service:redis1",
|
|
515
|
+
"name": "Redis health check",
|
|
516
|
+
"status": "passing",
|
|
517
|
+
"http": "https://www.hashicorptest.com",
|
|
518
|
+
"tls_skip_verify": False,
|
|
519
|
+
"method": "PUT",
|
|
520
|
+
"interval": "5s",
|
|
521
|
+
"timeout": "1s",
|
|
522
|
+
"deregister_critical_service_after": "30s",
|
|
523
|
+
"headers": [
|
|
524
|
+
{
|
|
525
|
+
"name": "foo",
|
|
526
|
+
"values": ["test"],
|
|
527
|
+
},
|
|
528
|
+
{
|
|
529
|
+
"name": "bar",
|
|
530
|
+
"values": ["test"],
|
|
531
|
+
},
|
|
532
|
+
],
|
|
533
|
+
}])
|
|
534
|
+
```
|
|
535
|
+
|
|
504
536
|
:param str resource_name: The name of the resource.
|
|
505
537
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
506
538
|
:param pulumi.Input[str] address: The address of the service. Defaults to the address of the node.
|
|
507
539
|
:param pulumi.Input[str] datacenter: The datacenter to use. This overrides the agent's default datacenter and the datacenter in the provider setup.
|
|
508
540
|
:param pulumi.Input[bool] enable_tag_override: Specifies to disable the anti-entropy feature for this service's tags. Defaults to `false`.
|
|
509
541
|
: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
|
|
542
|
+
:param pulumi.Input[str] name: The name of the service.
|
|
511
543
|
:param pulumi.Input[str] namespace: The namespace to create the service within.
|
|
512
544
|
:param pulumi.Input[str] node: The name of the node the to register the service on.
|
|
513
545
|
:param pulumi.Input[str] partition: The partition the service is associated with.
|
|
@@ -535,34 +567,65 @@ class Service(pulumi.CustomResource):
|
|
|
535
567
|
|
|
536
568
|
Creating a new node with the service:
|
|
537
569
|
|
|
538
|
-
<!--Start PulumiCodeChooser -->
|
|
539
570
|
```python
|
|
540
571
|
import pulumi
|
|
541
572
|
import pulumi_consul as consul
|
|
542
573
|
|
|
543
|
-
compute = consul.Node("compute",
|
|
574
|
+
compute = consul.Node("compute",
|
|
575
|
+
name="compute-google",
|
|
576
|
+
address="www.google.com")
|
|
544
577
|
google = consul.Service("google",
|
|
578
|
+
name="google",
|
|
545
579
|
node=compute.name,
|
|
546
580
|
port=80,
|
|
547
581
|
tags=["tag0"])
|
|
548
582
|
```
|
|
549
|
-
<!--End PulumiCodeChooser -->
|
|
550
583
|
|
|
551
584
|
Utilizing an existing known node:
|
|
552
585
|
|
|
553
|
-
<!--Start PulumiCodeChooser -->
|
|
554
586
|
```python
|
|
555
587
|
import pulumi
|
|
556
588
|
import pulumi_consul as consul
|
|
557
589
|
|
|
558
590
|
google = consul.Service("google",
|
|
591
|
+
name="google",
|
|
559
592
|
node="google",
|
|
560
593
|
port=443)
|
|
561
594
|
```
|
|
562
|
-
<!--End PulumiCodeChooser -->
|
|
563
595
|
|
|
564
596
|
Register a health-check:
|
|
565
597
|
|
|
598
|
+
```python
|
|
599
|
+
import pulumi
|
|
600
|
+
import pulumi_consul as consul
|
|
601
|
+
|
|
602
|
+
redis = consul.Service("redis",
|
|
603
|
+
name="redis",
|
|
604
|
+
node="redis",
|
|
605
|
+
port=6379,
|
|
606
|
+
checks=[{
|
|
607
|
+
"check_id": "service:redis1",
|
|
608
|
+
"name": "Redis health check",
|
|
609
|
+
"status": "passing",
|
|
610
|
+
"http": "https://www.hashicorptest.com",
|
|
611
|
+
"tls_skip_verify": False,
|
|
612
|
+
"method": "PUT",
|
|
613
|
+
"interval": "5s",
|
|
614
|
+
"timeout": "1s",
|
|
615
|
+
"deregister_critical_service_after": "30s",
|
|
616
|
+
"headers": [
|
|
617
|
+
{
|
|
618
|
+
"name": "foo",
|
|
619
|
+
"values": ["test"],
|
|
620
|
+
},
|
|
621
|
+
{
|
|
622
|
+
"name": "bar",
|
|
623
|
+
"values": ["test"],
|
|
624
|
+
},
|
|
625
|
+
],
|
|
626
|
+
}])
|
|
627
|
+
```
|
|
628
|
+
|
|
566
629
|
:param str resource_name: The name of the resource.
|
|
567
630
|
:param ServiceArgs args: The arguments to use to populate this resource's properties.
|
|
568
631
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -579,7 +642,7 @@ class Service(pulumi.CustomResource):
|
|
|
579
642
|
resource_name: str,
|
|
580
643
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
581
644
|
address: Optional[pulumi.Input[str]] = None,
|
|
582
|
-
checks: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
645
|
+
checks: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ServiceCheckArgs', 'ServiceCheckArgsDict']]]]] = None,
|
|
583
646
|
datacenter: Optional[pulumi.Input[str]] = None,
|
|
584
647
|
enable_tag_override: Optional[pulumi.Input[bool]] = None,
|
|
585
648
|
external: Optional[pulumi.Input[bool]] = None,
|
|
@@ -626,7 +689,7 @@ class Service(pulumi.CustomResource):
|
|
|
626
689
|
id: pulumi.Input[str],
|
|
627
690
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
628
691
|
address: Optional[pulumi.Input[str]] = None,
|
|
629
|
-
checks: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
692
|
+
checks: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ServiceCheckArgs', 'ServiceCheckArgsDict']]]]] = None,
|
|
630
693
|
datacenter: Optional[pulumi.Input[str]] = None,
|
|
631
694
|
enable_tag_override: Optional[pulumi.Input[bool]] = None,
|
|
632
695
|
external: Optional[pulumi.Input[bool]] = None,
|
|
@@ -649,7 +712,7 @@ class Service(pulumi.CustomResource):
|
|
|
649
712
|
:param pulumi.Input[str] datacenter: The datacenter to use. This overrides the agent's default datacenter and the datacenter in the provider setup.
|
|
650
713
|
:param pulumi.Input[bool] enable_tag_override: Specifies to disable the anti-entropy feature for this service's tags. Defaults to `false`.
|
|
651
714
|
: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
|
|
715
|
+
:param pulumi.Input[str] name: The name of the service.
|
|
653
716
|
:param pulumi.Input[str] namespace: The namespace to create the service within.
|
|
654
717
|
:param pulumi.Input[str] node: The name of the node the to register the service on.
|
|
655
718
|
:param pulumi.Input[str] partition: The partition the service is associated with.
|
|
@@ -707,10 +770,8 @@ class Service(pulumi.CustomResource):
|
|
|
707
770
|
|
|
708
771
|
@property
|
|
709
772
|
@pulumi.getter
|
|
773
|
+
@_utilities.deprecated("""The external field has been deprecated and does nothing.""")
|
|
710
774
|
def external(self) -> pulumi.Output[Optional[bool]]:
|
|
711
|
-
warnings.warn("""The external field has been deprecated and does nothing.""", DeprecationWarning)
|
|
712
|
-
pulumi.log.warn("""external is deprecated: The external field has been deprecated and does nothing.""")
|
|
713
|
-
|
|
714
775
|
return pulumi.get(self, "external")
|
|
715
776
|
|
|
716
777
|
@property
|
|
@@ -725,7 +786,7 @@ class Service(pulumi.CustomResource):
|
|
|
725
786
|
@pulumi.getter
|
|
726
787
|
def name(self) -> pulumi.Output[str]:
|
|
727
788
|
"""
|
|
728
|
-
The name of the
|
|
789
|
+
The name of the service.
|
|
729
790
|
"""
|
|
730
791
|
return pulumi.get(self, "name")
|
|
731
792
|
|
{pulumi_consul-3.12.0a1710156214.dist-info → pulumi_consul-3.13.0a1736849276.dist-info}/METADATA
RENAMED
|
@@ -1,16 +1,17 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
2
|
Name: pulumi_consul
|
|
3
|
-
Version: 3.
|
|
3
|
+
Version: 3.13.0a1736849276
|
|
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.9
|
|
10
10
|
Description-Content-Type: text/markdown
|
|
11
|
-
Requires-Dist: parver
|
|
12
|
-
Requires-Dist: pulumi
|
|
13
|
-
Requires-Dist: semver
|
|
11
|
+
Requires-Dist: parver>=0.2.1
|
|
12
|
+
Requires-Dist: pulumi<4.0.0,>=3.142.0
|
|
13
|
+
Requires-Dist: semver>=2.8.1
|
|
14
|
+
Requires-Dist: typing-extensions>=4.11; python_version < "3.11"
|
|
14
15
|
|
|
15
16
|
[](https://github.com/pulumi/pulumi-consul/actions)
|
|
16
17
|
[](https://slack.pulumi.com)
|
|
@@ -0,0 +1,72 @@
|
|
|
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=rZFuMT41Yeafjdxj9e6MdeIOTiTJk8IHtPo84JkChLk,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.13.0a1736849276.dist-info/METADATA,sha256=BVmgNuOs8DB8AwHHXRt8-DrNvh9bWkVTgnngVQaH7qY,4007
|
|
70
|
+
pulumi_consul-3.13.0a1736849276.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
71
|
+
pulumi_consul-3.13.0a1736849276.dist-info/top_level.txt,sha256=SrKSXrIq8AWqnNKrd7pWSC691idGwXi9XMA-DTWwcfg,14
|
|
72
|
+
pulumi_consul-3.13.0a1736849276.dist-info/RECORD,,
|
|
@@ -1,70 +0,0 @@
|
|
|
1
|
-
pulumi_consul/__init__.py,sha256=WEdXDw8m0r_d5zps4HIp-KZjaIErfJLypM_JVn9whIA,8027
|
|
2
|
-
pulumi_consul/_inputs.py,sha256=rRW-KThK4f2cRL0JM2Fx34AQ__lCS552v9oImvspvBk,217097
|
|
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=IZs1UldvCqm7OQfpN79Sxq2cnVglZKtbSabhyygh3T4,234747
|
|
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.0a1710156214.dist-info/METADATA,sha256=W07fnEzOVw0rfgXJ0wEXkX9vdUZFJ3R-7w4iz02JfFo,3944
|
|
68
|
-
pulumi_consul-3.12.0a1710156214.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
69
|
-
pulumi_consul-3.12.0a1710156214.dist-info/top_level.txt,sha256=SrKSXrIq8AWqnNKrd7pWSC691idGwXi9XMA-DTWwcfg,14
|
|
70
|
-
pulumi_consul-3.12.0a1710156214.dist-info/RECORD,,
|
|
File without changes
|