pulumi-consul 3.12.0a1709360320__py3-none-any.whl → 3.13.0a1736832526__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 -14
- pulumi_consul/acl_binding_rule.py +12 -5
- pulumi_consul/acl_policy.py +9 -4
- pulumi_consul/acl_role.py +39 -30
- pulumi_consul/acl_role_policy_attachment.py +15 -8
- pulumi_consul/acl_token.py +36 -27
- pulumi_consul/acl_token_policy_attachment.py +7 -2
- pulumi_consul/acl_token_role_attachment.py +11 -4
- pulumi_consul/admin_partition.py +13 -4
- pulumi_consul/agent_service.py +7 -0
- pulumi_consul/autopilot_config.py +5 -0
- pulumi_consul/catalog_entry.py +16 -62
- pulumi_consul/certificate_authority.py +10 -51
- 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 +75 -26
- pulumi_consul/config_entry_service_defaults.py +58 -51
- pulumi_consul/config_entry_service_intentions.py +80 -71
- pulumi_consul/config_entry_service_resolver.py +94 -87
- pulumi_consul/config_entry_service_router.py +31 -62
- pulumi_consul/config_entry_service_splitter.py +104 -93
- pulumi_consul/config_entry_v2_exported_services.py +479 -0
- pulumi_consul/get_acl_auth_method.py +26 -8
- pulumi_consul/get_acl_policy.py +20 -5
- pulumi_consul/get_acl_role.py +24 -5
- pulumi_consul/get_acl_token.py +25 -5
- pulumi_consul/get_acl_token_secret_id.py +29 -11
- pulumi_consul/get_agent_config.py +17 -5
- pulumi_consul/get_agent_self.py +82 -5
- pulumi_consul/get_autopilot_health.py +16 -5
- 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 -38
- pulumi_consul/get_keys.py +44 -30
- pulumi_consul/get_network_area_members.py +26 -16
- pulumi_consul/get_network_segments.py +22 -14
- pulumi_consul/get_nodes.py +21 -9
- pulumi_consul/get_peering.py +22 -5
- pulumi_consul/get_peerings.py +14 -5
- 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 +17 -12
- pulumi_consul/key_prefix.py +48 -50
- pulumi_consul/keys.py +26 -30
- pulumi_consul/license.py +9 -2
- pulumi_consul/namespace.py +13 -4
- pulumi_consul/namespace_policy_attachment.py +11 -4
- pulumi_consul/namespace_role_attachment.py +11 -4
- pulumi_consul/network_area.py +11 -15
- pulumi_consul/node.py +19 -19
- pulumi_consul/outputs.py +30 -27
- pulumi_consul/peering.py +13 -18
- pulumi_consul/peering_token.py +55 -11
- pulumi_consul/prepared_query.py +101 -101
- pulumi_consul/provider.py +11 -6
- pulumi_consul/pulumi-plugin.json +2 -1
- pulumi_consul/service.py +144 -19
- {pulumi_consul-3.12.0a1709360320.dist-info → pulumi_consul-3.13.0a1736832526.dist-info}/METADATA +7 -6
- pulumi_consul-3.13.0a1736832526.dist-info/RECORD +72 -0
- {pulumi_consul-3.12.0a1709360320.dist-info → pulumi_consul-3.13.0a1736832526.dist-info}/WHEEL +1 -1
- pulumi_consul-3.12.0a1709360320.dist-info/RECORD +0 -70
- {pulumi_consul-3.12.0a1709360320.dist-info → pulumi_consul-3.13.0a1736832526.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,
|
|
@@ -469,13 +470,76 @@ class Service(pulumi.CustomResource):
|
|
|
469
470
|
registered, it is not recommended to use this resource as the service will be
|
|
470
471
|
removed during the next [anti-entropy synchronization](https://www.consul.io/docs/architecture/anti-entropy).
|
|
471
472
|
|
|
473
|
+
## Example Usage
|
|
474
|
+
|
|
475
|
+
Creating a new node with the service:
|
|
476
|
+
|
|
477
|
+
```python
|
|
478
|
+
import pulumi
|
|
479
|
+
import pulumi_consul as consul
|
|
480
|
+
|
|
481
|
+
compute = consul.Node("compute",
|
|
482
|
+
name="compute-google",
|
|
483
|
+
address="www.google.com")
|
|
484
|
+
google = consul.Service("google",
|
|
485
|
+
name="google",
|
|
486
|
+
node=compute.name,
|
|
487
|
+
port=80,
|
|
488
|
+
tags=["tag0"])
|
|
489
|
+
```
|
|
490
|
+
|
|
491
|
+
Utilizing an existing known node:
|
|
492
|
+
|
|
493
|
+
```python
|
|
494
|
+
import pulumi
|
|
495
|
+
import pulumi_consul as consul
|
|
496
|
+
|
|
497
|
+
google = consul.Service("google",
|
|
498
|
+
name="google",
|
|
499
|
+
node="google",
|
|
500
|
+
port=443)
|
|
501
|
+
```
|
|
502
|
+
|
|
503
|
+
Register a health-check:
|
|
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
|
+
|
|
472
536
|
:param str resource_name: The name of the resource.
|
|
473
537
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
474
538
|
:param pulumi.Input[str] address: The address of the service. Defaults to the address of the node.
|
|
475
539
|
:param pulumi.Input[str] datacenter: The datacenter to use. This overrides the agent's default datacenter and the datacenter in the provider setup.
|
|
476
540
|
:param pulumi.Input[bool] enable_tag_override: Specifies to disable the anti-entropy feature for this service's tags. Defaults to `false`.
|
|
477
541
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] meta: A map of arbitrary KV metadata linked to the service instance.
|
|
478
|
-
:param pulumi.Input[str] name: The name of the
|
|
542
|
+
:param pulumi.Input[str] name: The name of the service.
|
|
479
543
|
:param pulumi.Input[str] namespace: The namespace to create the service within.
|
|
480
544
|
:param pulumi.Input[str] node: The name of the node the to register the service on.
|
|
481
545
|
:param pulumi.Input[str] partition: The partition the service is associated with.
|
|
@@ -499,6 +563,69 @@ class Service(pulumi.CustomResource):
|
|
|
499
563
|
registered, it is not recommended to use this resource as the service will be
|
|
500
564
|
removed during the next [anti-entropy synchronization](https://www.consul.io/docs/architecture/anti-entropy).
|
|
501
565
|
|
|
566
|
+
## Example Usage
|
|
567
|
+
|
|
568
|
+
Creating a new node with the service:
|
|
569
|
+
|
|
570
|
+
```python
|
|
571
|
+
import pulumi
|
|
572
|
+
import pulumi_consul as consul
|
|
573
|
+
|
|
574
|
+
compute = consul.Node("compute",
|
|
575
|
+
name="compute-google",
|
|
576
|
+
address="www.google.com")
|
|
577
|
+
google = consul.Service("google",
|
|
578
|
+
name="google",
|
|
579
|
+
node=compute.name,
|
|
580
|
+
port=80,
|
|
581
|
+
tags=["tag0"])
|
|
582
|
+
```
|
|
583
|
+
|
|
584
|
+
Utilizing an existing known node:
|
|
585
|
+
|
|
586
|
+
```python
|
|
587
|
+
import pulumi
|
|
588
|
+
import pulumi_consul as consul
|
|
589
|
+
|
|
590
|
+
google = consul.Service("google",
|
|
591
|
+
name="google",
|
|
592
|
+
node="google",
|
|
593
|
+
port=443)
|
|
594
|
+
```
|
|
595
|
+
|
|
596
|
+
Register a health-check:
|
|
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
|
+
|
|
502
629
|
:param str resource_name: The name of the resource.
|
|
503
630
|
:param ServiceArgs args: The arguments to use to populate this resource's properties.
|
|
504
631
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -515,7 +642,7 @@ class Service(pulumi.CustomResource):
|
|
|
515
642
|
resource_name: str,
|
|
516
643
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
517
644
|
address: Optional[pulumi.Input[str]] = None,
|
|
518
|
-
checks: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
645
|
+
checks: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ServiceCheckArgs', 'ServiceCheckArgsDict']]]]] = None,
|
|
519
646
|
datacenter: Optional[pulumi.Input[str]] = None,
|
|
520
647
|
enable_tag_override: Optional[pulumi.Input[bool]] = None,
|
|
521
648
|
external: Optional[pulumi.Input[bool]] = None,
|
|
@@ -562,7 +689,7 @@ class Service(pulumi.CustomResource):
|
|
|
562
689
|
id: pulumi.Input[str],
|
|
563
690
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
564
691
|
address: Optional[pulumi.Input[str]] = None,
|
|
565
|
-
checks: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
692
|
+
checks: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ServiceCheckArgs', 'ServiceCheckArgsDict']]]]] = None,
|
|
566
693
|
datacenter: Optional[pulumi.Input[str]] = None,
|
|
567
694
|
enable_tag_override: Optional[pulumi.Input[bool]] = None,
|
|
568
695
|
external: Optional[pulumi.Input[bool]] = None,
|
|
@@ -585,7 +712,7 @@ class Service(pulumi.CustomResource):
|
|
|
585
712
|
:param pulumi.Input[str] datacenter: The datacenter to use. This overrides the agent's default datacenter and the datacenter in the provider setup.
|
|
586
713
|
:param pulumi.Input[bool] enable_tag_override: Specifies to disable the anti-entropy feature for this service's tags. Defaults to `false`.
|
|
587
714
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] meta: A map of arbitrary KV metadata linked to the service instance.
|
|
588
|
-
:param pulumi.Input[str] name: The name of the
|
|
715
|
+
:param pulumi.Input[str] name: The name of the service.
|
|
589
716
|
:param pulumi.Input[str] namespace: The namespace to create the service within.
|
|
590
717
|
:param pulumi.Input[str] node: The name of the node the to register the service on.
|
|
591
718
|
:param pulumi.Input[str] partition: The partition the service is associated with.
|
|
@@ -643,10 +770,8 @@ class Service(pulumi.CustomResource):
|
|
|
643
770
|
|
|
644
771
|
@property
|
|
645
772
|
@pulumi.getter
|
|
773
|
+
@_utilities.deprecated("""The external field has been deprecated and does nothing.""")
|
|
646
774
|
def external(self) -> pulumi.Output[Optional[bool]]:
|
|
647
|
-
warnings.warn("""The external field has been deprecated and does nothing.""", DeprecationWarning)
|
|
648
|
-
pulumi.log.warn("""external is deprecated: The external field has been deprecated and does nothing.""")
|
|
649
|
-
|
|
650
775
|
return pulumi.get(self, "external")
|
|
651
776
|
|
|
652
777
|
@property
|
|
@@ -661,7 +786,7 @@ class Service(pulumi.CustomResource):
|
|
|
661
786
|
@pulumi.getter
|
|
662
787
|
def name(self) -> pulumi.Output[str]:
|
|
663
788
|
"""
|
|
664
|
-
The name of the
|
|
789
|
+
The name of the service.
|
|
665
790
|
"""
|
|
666
791
|
return pulumi.get(self, "name")
|
|
667
792
|
|
{pulumi_consul-3.12.0a1709360320.dist-info → pulumi_consul-3.13.0a1736832526.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.0a1736832526
|
|
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=HfrtUGK0HFR4PAYTLKluml3lZEGR4_sHyW1c8Bskwfo,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.0a1736832526.dist-info/METADATA,sha256=0WjChpo8kGsv_Ds8xi8LfzebU94iSwXoQwJ6rOX0gEk,4007
|
|
70
|
+
pulumi_consul-3.13.0a1736832526.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
71
|
+
pulumi_consul-3.13.0a1736832526.dist-info/top_level.txt,sha256=SrKSXrIq8AWqnNKrd7pWSC691idGwXi9XMA-DTWwcfg,14
|
|
72
|
+
pulumi_consul-3.13.0a1736832526.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=c_cHJeKbpBdFO6s5FoB42IGTQOdayGt_7audvl5gOOc,32775
|
|
5
|
-
pulumi_consul/acl_binding_rule.py,sha256=jzhrnwFMz7M9Wp-fVlfskYNmGQ-1esqZOEJMm7aIqdo,22676
|
|
6
|
-
pulumi_consul/acl_policy.py,sha256=Gx4lekJodM7vtx8J5X6UG_sjr7MA5kFp2u51h7lUU9M,15568
|
|
7
|
-
pulumi_consul/acl_role.py,sha256=XAutswhlMF4BfNCKKZhZsUrGUoZtu0R17JtUXtO_qoY,23996
|
|
8
|
-
pulumi_consul/acl_role_policy_attachment.py,sha256=gCZC_cbIohEs0LEW56z_GmOyAlrv8QHeiDt6qQ9zsIM,8525
|
|
9
|
-
pulumi_consul/acl_token.py,sha256=2bVsuwdN_aujfJZBfUlB_jfOH_PiytqewXjD74x3EY4,31329
|
|
10
|
-
pulumi_consul/acl_token_policy_attachment.py,sha256=xvBNxHEk2ZsqC822RHcdsbwFScg1-zLiTgF8xDN0U9M,8510
|
|
11
|
-
pulumi_consul/acl_token_role_attachment.py,sha256=p--QDxrXJiuyEyroumHsbbdbGr42JSI7-H2mFHd2mqU,7743
|
|
12
|
-
pulumi_consul/admin_partition.py,sha256=MyYkeiIdtNBd3RLnqQRMbxeUc7CeFnPutkljfUAG88I,8509
|
|
13
|
-
pulumi_consul/agent_service.py,sha256=-xpqaiKfUuqPzun_pHXT4xtdEjSvj8A8d7a280AL574,12933
|
|
14
|
-
pulumi_consul/autopilot_config.py,sha256=g_N2ZqciXVA-H4kD5vZExAsABfawil-5KOpJmo41W7A,28023
|
|
15
|
-
pulumi_consul/catalog_entry.py,sha256=7jmCtvM7T9JoMOCGkEwDeiAOeI0rR4sp2hApuXg5atc,18793
|
|
16
|
-
pulumi_consul/certificate_authority.py,sha256=Bt8L-wQDIzLxi3FjSlyh_jyPqg4b64zPD4qM5mIK2GY,14387
|
|
17
|
-
pulumi_consul/config_entry.py,sha256=rpCxbLqTEWwEvIJ0B-EsBUii-fi5Sz0uGWq5LXRrq2Q,29520
|
|
18
|
-
pulumi_consul/config_entry_service_defaults.py,sha256=upt_NA54szcJ4E_4mP5V1JOC3BLiuLvgBEcwFfp-BYo,52788
|
|
19
|
-
pulumi_consul/config_entry_service_intentions.py,sha256=VADzSknl6Y6zgwOmS7UMls70PD7FtfGH3HeSGv0k2IU,22526
|
|
20
|
-
pulumi_consul/config_entry_service_resolver.py,sha256=LMgGzu9dT0AMICbj2OidfuA2bRJPKjqo243fU-cKmT8,35789
|
|
21
|
-
pulumi_consul/config_entry_service_router.py,sha256=iLCb7S0HUPD3vv-Z8gzMo-0J8fKSpVCZTSvdGbcX7ZM,16804
|
|
22
|
-
pulumi_consul/config_entry_service_splitter.py,sha256=JuBmWdlT79UouQfiLaShYERX9JE9C_liGaYNpjxzHfg,20200
|
|
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=0x-mVAorUt30-BRVbq6nETtrvLn8wIOrB1t2HE83u94,7487
|
|
26
|
-
pulumi_consul/get_acl_token.py,sha256=7n2WTxRrF-zrYQRmFfy4jLXYjsLsoCQ5s81gVqvEKwU,9808
|
|
27
|
-
pulumi_consul/get_acl_token_secret_id.py,sha256=u--3JfdykzLywTNod4IYNkcC1koLs2PBMFoLKy1yOZg,6905
|
|
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=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=_FHDxqdX3HpQ0huM8nvyDmry8tsMR70H2brR2B45uG8,10635
|
|
37
|
-
pulumi_consul/get_keys.py,sha256=I9JRG5Wx7xCEm8fR7Tq3PlND5Td12oHUycIudkMHqGE,9449
|
|
38
|
-
pulumi_consul/get_network_area_members.py,sha256=3KXjnTAB2ymHJHo0hxPXOmc72p_5_pZggfAg16V0WeA,6572
|
|
39
|
-
pulumi_consul/get_network_segments.py,sha256=NlfqvcFa9RjZfdEEqxFbsFLu6b8cG-Hk25vpKOeBSL4,5411
|
|
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=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=zvs548ECKpU59uE4I7KlcChYXwFZTRlK8rJw1KO7F_Q,25838
|
|
47
|
-
pulumi_consul/key_prefix.py,sha256=OgCHbast4F4Bha1d8B66OWFUY-cuB7RK3YOzMfrYX6U,26403
|
|
48
|
-
pulumi_consul/keys.py,sha256=dd5ptrGZXnzUS9MLch1y_UoIx-ZbrJCSWo2xDW6X1Kg,17877
|
|
49
|
-
pulumi_consul/license.py,sha256=rTuj2sQ7wrdO2Z2kc44vaVnt9Kdy-CDA3isU7Cul1OA,19835
|
|
50
|
-
pulumi_consul/namespace.py,sha256=PADPLeCK_6E3IsJGBC_uvNV1SgVlAYGqtYI2vLcQh_Q,17945
|
|
51
|
-
pulumi_consul/namespace_policy_attachment.py,sha256=p0BaakAgvSmjiEGEPBfKLHw2A7PyQXXekkOZLp36WxQ,8186
|
|
52
|
-
pulumi_consul/namespace_role_attachment.py,sha256=wGExxN6cCQYv1oeEqF2z6gI4yBBx1BF5TvVADSAk_xs,8038
|
|
53
|
-
pulumi_consul/network_area.py,sha256=YmboKpGWDpugJ79JXiBrIRJy50m5zHwKgL48Bf0909U,19676
|
|
54
|
-
pulumi_consul/node.py,sha256=HJ4OErAOD4chBez5Xs6smQL9LIbBBYpzAYeDjywvMJA,17929
|
|
55
|
-
pulumi_consul/outputs.py,sha256=IZs1UldvCqm7OQfpN79Sxq2cnVglZKtbSabhyygh3T4,234747
|
|
56
|
-
pulumi_consul/peering.py,sha256=yahby467Zb8sYd90GnIB35BNM1qGR3j1J0Y1j6l02wA,21064
|
|
57
|
-
pulumi_consul/peering_token.py,sha256=DMm2gBJ2DaTygdsX99QpXxJaMmdqzEazpm7i2e8P1H8,14065
|
|
58
|
-
pulumi_consul/prepared_query.py,sha256=CcjTSG_Ap_LExwelDWMDqVMyuO1z2oQiQOg6Jx1Wi9Q,53714
|
|
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=o2oJzBGp6q68FRjgYraO4KFhF7YusCRAVR7tXLbnUWk,31276
|
|
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.0a1709360320.dist-info/METADATA,sha256=qQCsRYTlNan9PyHhUda1Jb8QxY8540KxHXl0NMX8Oqo,3944
|
|
68
|
-
pulumi_consul-3.12.0a1709360320.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
69
|
-
pulumi_consul-3.12.0a1709360320.dist-info/top_level.txt,sha256=SrKSXrIq8AWqnNKrd7pWSC691idGwXi9XMA-DTWwcfg,14
|
|
70
|
-
pulumi_consul-3.12.0a1709360320.dist-info/RECORD,,
|
|
File without changes
|