pulumi-consul 3.14.0a1757050566__py3-none-any.whl → 3.14.0a1768432677__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.
- pulumi_consul/acl_policy.py +4 -4
- pulumi_consul/acl_token.py +8 -8
- pulumi_consul/catalog_entry.py +42 -0
- pulumi_consul/config_entry_service_defaults.py +52 -0
- pulumi_consul/get_agent_self.py +4 -0
- pulumi_consul/get_catalog_nodes.py +34 -0
- pulumi_consul/get_datacenters.py +68 -0
- pulumi_consul/get_nodes.py +34 -0
- pulumi_consul/get_service_health.py +4 -0
- pulumi_consul/pulumi-plugin.json +1 -1
- {pulumi_consul-3.14.0a1757050566.dist-info → pulumi_consul-3.14.0a1768432677.dist-info}/METADATA +1 -1
- {pulumi_consul-3.14.0a1757050566.dist-info → pulumi_consul-3.14.0a1768432677.dist-info}/RECORD +14 -14
- {pulumi_consul-3.14.0a1757050566.dist-info → pulumi_consul-3.14.0a1768432677.dist-info}/WHEEL +0 -0
- {pulumi_consul-3.14.0a1757050566.dist-info → pulumi_consul-3.14.0a1768432677.dist-info}/top_level.txt +0 -0
pulumi_consul/acl_policy.py
CHANGED
|
@@ -248,8 +248,8 @@ class AclPolicy(pulumi.CustomResource):
|
|
|
248
248
|
test = consul.AclPolicy("test",
|
|
249
249
|
name="my_policy",
|
|
250
250
|
datacenters=["dc1"],
|
|
251
|
-
rules=\"\"\"node_prefix "" {
|
|
252
|
-
policy = "read"
|
|
251
|
+
rules=\"\"\"node_prefix \\"\\" {
|
|
252
|
+
policy = \\"read\\"
|
|
253
253
|
}
|
|
254
254
|
\"\"\")
|
|
255
255
|
```
|
|
@@ -289,8 +289,8 @@ class AclPolicy(pulumi.CustomResource):
|
|
|
289
289
|
test = consul.AclPolicy("test",
|
|
290
290
|
name="my_policy",
|
|
291
291
|
datacenters=["dc1"],
|
|
292
|
-
rules=\"\"\"node_prefix "" {
|
|
293
|
-
policy = "read"
|
|
292
|
+
rules=\"\"\"node_prefix \\"\\" {
|
|
293
|
+
policy = \\"read\\"
|
|
294
294
|
}
|
|
295
295
|
\"\"\")
|
|
296
296
|
```
|
pulumi_consul/acl_token.py
CHANGED
|
@@ -415,8 +415,8 @@ class AclToken(pulumi.CustomResource):
|
|
|
415
415
|
# Basic usage
|
|
416
416
|
agent = consul.AclPolicy("agent",
|
|
417
417
|
name="agent",
|
|
418
|
-
rules=\"\"\"node_prefix "" {
|
|
419
|
-
policy = "read"
|
|
418
|
+
rules=\"\"\"node_prefix \\"\\" {
|
|
419
|
+
policy = \\"read\\"
|
|
420
420
|
}
|
|
421
421
|
\"\"\")
|
|
422
422
|
test = consul.AclToken("test",
|
|
@@ -424,9 +424,9 @@ class AclToken(pulumi.CustomResource):
|
|
|
424
424
|
policies=[agent.name],
|
|
425
425
|
local=True)
|
|
426
426
|
# Explicitly set the `accessor_id`
|
|
427
|
-
|
|
427
|
+
test_uuid = random.index.Uuid("test")
|
|
428
428
|
test_predefined_id = consul.AclToken("test_predefined_id",
|
|
429
|
-
accessor_id=
|
|
429
|
+
accessor_id=test_uuid_random_uuid["result"],
|
|
430
430
|
description="my test uuid token",
|
|
431
431
|
policies=[agent.name],
|
|
432
432
|
local=True)
|
|
@@ -473,8 +473,8 @@ class AclToken(pulumi.CustomResource):
|
|
|
473
473
|
# Basic usage
|
|
474
474
|
agent = consul.AclPolicy("agent",
|
|
475
475
|
name="agent",
|
|
476
|
-
rules=\"\"\"node_prefix "" {
|
|
477
|
-
policy = "read"
|
|
476
|
+
rules=\"\"\"node_prefix \\"\\" {
|
|
477
|
+
policy = \\"read\\"
|
|
478
478
|
}
|
|
479
479
|
\"\"\")
|
|
480
480
|
test = consul.AclToken("test",
|
|
@@ -482,9 +482,9 @@ class AclToken(pulumi.CustomResource):
|
|
|
482
482
|
policies=[agent.name],
|
|
483
483
|
local=True)
|
|
484
484
|
# Explicitly set the `accessor_id`
|
|
485
|
-
|
|
485
|
+
test_uuid = random.index.Uuid("test")
|
|
486
486
|
test_predefined_id = consul.AclToken("test_predefined_id",
|
|
487
|
-
accessor_id=
|
|
487
|
+
accessor_id=test_uuid_random_uuid["result"],
|
|
488
488
|
description="my test uuid token",
|
|
489
489
|
policies=[agent.name],
|
|
490
490
|
local=True)
|
pulumi_consul/catalog_entry.py
CHANGED
|
@@ -242,6 +242,27 @@ class CatalogEntry(pulumi.CustomResource):
|
|
|
242
242
|
Registers a node or service with the [Consul Catalog](https://www.consul.io/docs/agent/http/catalog.html#catalog_register).
|
|
243
243
|
Currently, defining health checks is not supported.
|
|
244
244
|
|
|
245
|
+
## Example Usage
|
|
246
|
+
|
|
247
|
+
```python
|
|
248
|
+
import pulumi
|
|
249
|
+
import pulumi_consul as consul
|
|
250
|
+
|
|
251
|
+
app = consul.CatalogEntry("app",
|
|
252
|
+
address="192.168.10.10",
|
|
253
|
+
node="foobar",
|
|
254
|
+
services={
|
|
255
|
+
"address": "127.0.0.1",
|
|
256
|
+
"id": "redis1",
|
|
257
|
+
"name": "redis",
|
|
258
|
+
"port": 8000,
|
|
259
|
+
"tags": [
|
|
260
|
+
"master",
|
|
261
|
+
"v1",
|
|
262
|
+
],
|
|
263
|
+
})
|
|
264
|
+
```
|
|
265
|
+
|
|
245
266
|
:param str resource_name: The name of the resource.
|
|
246
267
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
247
268
|
:param pulumi.Input[_builtins.str] address: The address of the node being added to,
|
|
@@ -268,6 +289,27 @@ class CatalogEntry(pulumi.CustomResource):
|
|
|
268
289
|
Registers a node or service with the [Consul Catalog](https://www.consul.io/docs/agent/http/catalog.html#catalog_register).
|
|
269
290
|
Currently, defining health checks is not supported.
|
|
270
291
|
|
|
292
|
+
## Example Usage
|
|
293
|
+
|
|
294
|
+
```python
|
|
295
|
+
import pulumi
|
|
296
|
+
import pulumi_consul as consul
|
|
297
|
+
|
|
298
|
+
app = consul.CatalogEntry("app",
|
|
299
|
+
address="192.168.10.10",
|
|
300
|
+
node="foobar",
|
|
301
|
+
services={
|
|
302
|
+
"address": "127.0.0.1",
|
|
303
|
+
"id": "redis1",
|
|
304
|
+
"name": "redis",
|
|
305
|
+
"port": 8000,
|
|
306
|
+
"tags": [
|
|
307
|
+
"master",
|
|
308
|
+
"v1",
|
|
309
|
+
],
|
|
310
|
+
})
|
|
311
|
+
```
|
|
312
|
+
|
|
271
313
|
:param str resource_name: The name of the resource.
|
|
272
314
|
:param CatalogEntryArgs args: The arguments to use to populate this resource's properties.
|
|
273
315
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -636,6 +636,32 @@ class ConfigEntryServiceDefaults(pulumi.CustomResource):
|
|
|
636
636
|
"""
|
|
637
637
|
## Example Usage
|
|
638
638
|
|
|
639
|
+
```python
|
|
640
|
+
import pulumi
|
|
641
|
+
import pulumi_consul as consul
|
|
642
|
+
|
|
643
|
+
dashboard = consul.ConfigEntryServiceDefaults("dashboard",
|
|
644
|
+
name="dashboard",
|
|
645
|
+
upstream_configs=[{
|
|
646
|
+
"defaults": {
|
|
647
|
+
"meshGateways": {
|
|
648
|
+
"mode": "local",
|
|
649
|
+
},
|
|
650
|
+
"limits": {
|
|
651
|
+
"max_connections": 512,
|
|
652
|
+
"max_pending_requests": 512,
|
|
653
|
+
"max_concurrent_requests": 512,
|
|
654
|
+
},
|
|
655
|
+
},
|
|
656
|
+
"overrides": [{
|
|
657
|
+
"name": "counting",
|
|
658
|
+
"mesh_gateways": [{
|
|
659
|
+
"mode": "remote",
|
|
660
|
+
}],
|
|
661
|
+
}],
|
|
662
|
+
}])
|
|
663
|
+
```
|
|
664
|
+
|
|
639
665
|
:param str resource_name: The name of the resource.
|
|
640
666
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
641
667
|
:param pulumi.Input[_builtins.str] balance_inbound_connections: Specifies the strategy for allocating inbound connections to the service across Envoy proxy threads.
|
|
@@ -666,6 +692,32 @@ class ConfigEntryServiceDefaults(pulumi.CustomResource):
|
|
|
666
692
|
"""
|
|
667
693
|
## Example Usage
|
|
668
694
|
|
|
695
|
+
```python
|
|
696
|
+
import pulumi
|
|
697
|
+
import pulumi_consul as consul
|
|
698
|
+
|
|
699
|
+
dashboard = consul.ConfigEntryServiceDefaults("dashboard",
|
|
700
|
+
name="dashboard",
|
|
701
|
+
upstream_configs=[{
|
|
702
|
+
"defaults": {
|
|
703
|
+
"meshGateways": {
|
|
704
|
+
"mode": "local",
|
|
705
|
+
},
|
|
706
|
+
"limits": {
|
|
707
|
+
"max_connections": 512,
|
|
708
|
+
"max_pending_requests": 512,
|
|
709
|
+
"max_concurrent_requests": 512,
|
|
710
|
+
},
|
|
711
|
+
},
|
|
712
|
+
"overrides": [{
|
|
713
|
+
"name": "counting",
|
|
714
|
+
"mesh_gateways": [{
|
|
715
|
+
"mode": "remote",
|
|
716
|
+
}],
|
|
717
|
+
}],
|
|
718
|
+
}])
|
|
719
|
+
```
|
|
720
|
+
|
|
669
721
|
:param str resource_name: The name of the resource.
|
|
670
722
|
:param ConfigEntryServiceDefaultsArgs args: The arguments to use to populate this resource's properties.
|
|
671
723
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
pulumi_consul/get_agent_self.py
CHANGED
|
@@ -774,6 +774,8 @@ def get_agent_self(opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetA
|
|
|
774
774
|
The `get_agent_self` data source returns
|
|
775
775
|
[configuration and status data](https://www.consul.io/docs/agent/http/agent.html#agent_self)
|
|
776
776
|
from the agent specified in the `provider`.
|
|
777
|
+
|
|
778
|
+
## Example Usage
|
|
777
779
|
"""
|
|
778
780
|
__args__ = dict()
|
|
779
781
|
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
@@ -860,6 +862,8 @@ def get_agent_self_output(opts: Optional[Union[pulumi.InvokeOptions, pulumi.Invo
|
|
|
860
862
|
The `get_agent_self` data source returns
|
|
861
863
|
[configuration and status data](https://www.consul.io/docs/agent/http/agent.html#agent_self)
|
|
862
864
|
from the agent specified in the `provider`.
|
|
865
|
+
|
|
866
|
+
## Example Usage
|
|
863
867
|
"""
|
|
864
868
|
__args__ = dict()
|
|
865
869
|
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
@@ -119,6 +119,23 @@ def get_catalog_nodes(query_options: Optional[Sequence[Union['GetCatalogNodesQue
|
|
|
119
119
|
different datacenter in the `query_options` it is possible to retrieve a list of
|
|
120
120
|
nodes from a different WAN-attached Consul datacenter.
|
|
121
121
|
|
|
122
|
+
## Example Usage
|
|
123
|
+
|
|
124
|
+
```python
|
|
125
|
+
import pulumi
|
|
126
|
+
import pulumi_consul as consul
|
|
127
|
+
import pulumi_example as example
|
|
128
|
+
import pulumi_std as std
|
|
129
|
+
|
|
130
|
+
read_dc1_nodes = consul.get_nodes(query_options=[{
|
|
131
|
+
"datacenter": "dc1",
|
|
132
|
+
}])
|
|
133
|
+
# Set the description to a whitespace delimited list of the node names
|
|
134
|
+
app = example.index.Resource("app", description=std.join(separator= ,
|
|
135
|
+
input=std.formatlist(input=%s,
|
|
136
|
+
args=[node_names]).result).result)
|
|
137
|
+
```
|
|
138
|
+
|
|
122
139
|
|
|
123
140
|
:param Sequence[Union['GetCatalogNodesQueryOptionArgs', 'GetCatalogNodesQueryOptionArgsDict']] query_options: See below.
|
|
124
141
|
"""
|
|
@@ -143,6 +160,23 @@ def get_catalog_nodes_output(query_options: Optional[pulumi.Input[Optional[Seque
|
|
|
143
160
|
different datacenter in the `query_options` it is possible to retrieve a list of
|
|
144
161
|
nodes from a different WAN-attached Consul datacenter.
|
|
145
162
|
|
|
163
|
+
## Example Usage
|
|
164
|
+
|
|
165
|
+
```python
|
|
166
|
+
import pulumi
|
|
167
|
+
import pulumi_consul as consul
|
|
168
|
+
import pulumi_example as example
|
|
169
|
+
import pulumi_std as std
|
|
170
|
+
|
|
171
|
+
read_dc1_nodes = consul.get_nodes(query_options=[{
|
|
172
|
+
"datacenter": "dc1",
|
|
173
|
+
}])
|
|
174
|
+
# Set the description to a whitespace delimited list of the node names
|
|
175
|
+
app = example.index.Resource("app", description=std.join(separator= ,
|
|
176
|
+
input=std.formatlist(input=%s,
|
|
177
|
+
args=[node_names]).result).result)
|
|
178
|
+
```
|
|
179
|
+
|
|
146
180
|
|
|
147
181
|
:param Sequence[Union['GetCatalogNodesQueryOptionArgs', 'GetCatalogNodesQueryOptionArgsDict']] query_options: See below.
|
|
148
182
|
"""
|
pulumi_consul/get_datacenters.py
CHANGED
|
@@ -67,6 +67,40 @@ def get_datacenters(opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGet
|
|
|
67
67
|
"""
|
|
68
68
|
The `get_datacenters` data source returns the list of all knwown Consul
|
|
69
69
|
datacenters.
|
|
70
|
+
|
|
71
|
+
## Example Usage
|
|
72
|
+
|
|
73
|
+
```python
|
|
74
|
+
import pulumi
|
|
75
|
+
import pulumi_consul as consul
|
|
76
|
+
import pulumi_std as std
|
|
77
|
+
|
|
78
|
+
all = consul.get_datacenters()
|
|
79
|
+
# Register a prepared query in each of the datacenters
|
|
80
|
+
myapp_query = []
|
|
81
|
+
for range in [{"key": k, "value": v} for [k, v] in enumerate(std.toset(input=all.datacenters).result)]:
|
|
82
|
+
myapp_query.append(consul.PreparedQuery(f"myapp-query-{range['key']}",
|
|
83
|
+
name="myquery",
|
|
84
|
+
datacenter=range["key"],
|
|
85
|
+
only_passing=True,
|
|
86
|
+
near="_agent",
|
|
87
|
+
service="myapp",
|
|
88
|
+
tags=[
|
|
89
|
+
"active",
|
|
90
|
+
"!standby",
|
|
91
|
+
],
|
|
92
|
+
failover={
|
|
93
|
+
"nearest_n": 3,
|
|
94
|
+
"datacenters": [
|
|
95
|
+
"us-west1",
|
|
96
|
+
"us-east-2",
|
|
97
|
+
"asia-east1",
|
|
98
|
+
],
|
|
99
|
+
},
|
|
100
|
+
dns={
|
|
101
|
+
"ttl": "30s",
|
|
102
|
+
}))
|
|
103
|
+
```
|
|
70
104
|
"""
|
|
71
105
|
__args__ = dict()
|
|
72
106
|
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
@@ -79,6 +113,40 @@ def get_datacenters_output(opts: Optional[Union[pulumi.InvokeOptions, pulumi.Inv
|
|
|
79
113
|
"""
|
|
80
114
|
The `get_datacenters` data source returns the list of all knwown Consul
|
|
81
115
|
datacenters.
|
|
116
|
+
|
|
117
|
+
## Example Usage
|
|
118
|
+
|
|
119
|
+
```python
|
|
120
|
+
import pulumi
|
|
121
|
+
import pulumi_consul as consul
|
|
122
|
+
import pulumi_std as std
|
|
123
|
+
|
|
124
|
+
all = consul.get_datacenters()
|
|
125
|
+
# Register a prepared query in each of the datacenters
|
|
126
|
+
myapp_query = []
|
|
127
|
+
for range in [{"key": k, "value": v} for [k, v] in enumerate(std.toset(input=all.datacenters).result)]:
|
|
128
|
+
myapp_query.append(consul.PreparedQuery(f"myapp-query-{range['key']}",
|
|
129
|
+
name="myquery",
|
|
130
|
+
datacenter=range["key"],
|
|
131
|
+
only_passing=True,
|
|
132
|
+
near="_agent",
|
|
133
|
+
service="myapp",
|
|
134
|
+
tags=[
|
|
135
|
+
"active",
|
|
136
|
+
"!standby",
|
|
137
|
+
],
|
|
138
|
+
failover={
|
|
139
|
+
"nearest_n": 3,
|
|
140
|
+
"datacenters": [
|
|
141
|
+
"us-west1",
|
|
142
|
+
"us-east-2",
|
|
143
|
+
"asia-east1",
|
|
144
|
+
],
|
|
145
|
+
},
|
|
146
|
+
dns={
|
|
147
|
+
"ttl": "30s",
|
|
148
|
+
}))
|
|
149
|
+
```
|
|
82
150
|
"""
|
|
83
151
|
__args__ = dict()
|
|
84
152
|
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
pulumi_consul/get_nodes.py
CHANGED
|
@@ -117,6 +117,23 @@ def get_nodes(query_options: Optional[Sequence[Union['GetNodesQueryOptionArgs',
|
|
|
117
117
|
different datacenter in the `query_options` it is possible to retrieve a list of
|
|
118
118
|
nodes from a different WAN-attached Consul datacenter.
|
|
119
119
|
|
|
120
|
+
## Example Usage
|
|
121
|
+
|
|
122
|
+
```python
|
|
123
|
+
import pulumi
|
|
124
|
+
import pulumi_consul as consul
|
|
125
|
+
import pulumi_example as example
|
|
126
|
+
import pulumi_std as std
|
|
127
|
+
|
|
128
|
+
read_dc1_nodes = consul.get_nodes(query_options=[{
|
|
129
|
+
"datacenter": "dc1",
|
|
130
|
+
}])
|
|
131
|
+
# Set the description to a whitespace delimited list of the node names
|
|
132
|
+
app = example.index.Resource("app", description=std.join(separator= ,
|
|
133
|
+
input=std.formatlist(input=%s,
|
|
134
|
+
args=[node_names]).result).result)
|
|
135
|
+
```
|
|
136
|
+
|
|
120
137
|
|
|
121
138
|
:param Sequence[Union['GetNodesQueryOptionArgs', 'GetNodesQueryOptionArgsDict']] query_options: See below.
|
|
122
139
|
"""
|
|
@@ -140,6 +157,23 @@ def get_nodes_output(query_options: Optional[pulumi.Input[Optional[Sequence[Unio
|
|
|
140
157
|
different datacenter in the `query_options` it is possible to retrieve a list of
|
|
141
158
|
nodes from a different WAN-attached Consul datacenter.
|
|
142
159
|
|
|
160
|
+
## Example Usage
|
|
161
|
+
|
|
162
|
+
```python
|
|
163
|
+
import pulumi
|
|
164
|
+
import pulumi_consul as consul
|
|
165
|
+
import pulumi_example as example
|
|
166
|
+
import pulumi_std as std
|
|
167
|
+
|
|
168
|
+
read_dc1_nodes = consul.get_nodes(query_options=[{
|
|
169
|
+
"datacenter": "dc1",
|
|
170
|
+
}])
|
|
171
|
+
# Set the description to a whitespace delimited list of the node names
|
|
172
|
+
app = example.index.Resource("app", description=std.join(separator= ,
|
|
173
|
+
input=std.formatlist(input=%s,
|
|
174
|
+
args=[node_names]).result).result)
|
|
175
|
+
```
|
|
176
|
+
|
|
143
177
|
|
|
144
178
|
:param Sequence[Union['GetNodesQueryOptionArgs', 'GetNodesQueryOptionArgsDict']] query_options: See below.
|
|
145
179
|
"""
|
|
@@ -175,6 +175,8 @@ def get_service_health(datacenter: Optional[_builtins.str] = None,
|
|
|
175
175
|
This resource is likely to change as frequently as the health-checks are being
|
|
176
176
|
updated, you should expect different results in a frequent basis.
|
|
177
177
|
|
|
178
|
+
## Example Usage
|
|
179
|
+
|
|
178
180
|
|
|
179
181
|
:param _builtins.str datacenter: The Consul datacenter to query.
|
|
180
182
|
:param _builtins.str filter: A filter expression to refine the list of results, see
|
|
@@ -230,6 +232,8 @@ def get_service_health_output(datacenter: Optional[pulumi.Input[Optional[_builti
|
|
|
230
232
|
This resource is likely to change as frequently as the health-checks are being
|
|
231
233
|
updated, you should expect different results in a frequent basis.
|
|
232
234
|
|
|
235
|
+
## Example Usage
|
|
236
|
+
|
|
233
237
|
|
|
234
238
|
:param _builtins.str datacenter: The Consul datacenter to query.
|
|
235
239
|
:param _builtins.str filter: A filter expression to refine the list of results, see
|
pulumi_consul/pulumi-plugin.json
CHANGED
{pulumi_consul-3.14.0a1757050566.dist-info → pulumi_consul-3.14.0a1768432677.dist-info}/RECORD
RENAMED
|
@@ -3,19 +3,19 @@ pulumi_consul/_inputs.py,sha256=8EnykEt0eI9SMzYsP_wseVymK7znJQ11OUDxeYzytqw,2989
|
|
|
3
3
|
pulumi_consul/_utilities.py,sha256=66uLGQDI1oMFOI3Fe5igAphtexWhcSLDyuVW50jW3ik,10789
|
|
4
4
|
pulumi_consul/acl_auth_method.py,sha256=wRv6EvvGPdzOFohGIUrTVCJESPosbOI_6nq06M8dvxU,34569
|
|
5
5
|
pulumi_consul/acl_binding_rule.py,sha256=46LhKN-aE7pc64GhKChi4yZwFE0HHyoKAEHAvkR0oE8,24307
|
|
6
|
-
pulumi_consul/acl_policy.py,sha256=
|
|
6
|
+
pulumi_consul/acl_policy.py,sha256=AOWrcXHINtoXPxhRArd6gNShWo57rROLJDwh9cxvuNw,16888
|
|
7
7
|
pulumi_consul/acl_role.py,sha256=Jq1k3OKcS5xesJY4SlCymLT1BgCMgL2HDyqMztXFBPE,25386
|
|
8
8
|
pulumi_consul/acl_role_policy_attachment.py,sha256=ZIxWq3gJbsX97YiLtCymQUx2QMpjwgRUv0Vlq4j0crI,9137
|
|
9
|
-
pulumi_consul/acl_token.py,sha256=
|
|
9
|
+
pulumi_consul/acl_token.py,sha256=0dLMrfldu38rDVF57n9_FOhv_djc5QmsAIeVhdTk08Q,33368
|
|
10
10
|
pulumi_consul/acl_token_policy_attachment.py,sha256=NQSbfwM4_5IeCujPSILVfieE3JXT2-2xCoJhyGfFMIk,9106
|
|
11
11
|
pulumi_consul/acl_token_role_attachment.py,sha256=okDJ8mNOBGyTAq3q-y5AZE1tDNyXzdhus-8is4NgwwY,8351
|
|
12
12
|
pulumi_consul/admin_partition.py,sha256=T4b5LUbgsknBO5WVebAk2dTRrjNPPPSwKWE1wHHb0cg,11547
|
|
13
13
|
pulumi_consul/agent_service.py,sha256=20e3G646H5DdPcZhvHQeA6Gy6BFTEbqr2IVNZJ-5TKc,13901
|
|
14
14
|
pulumi_consul/autopilot_config.py,sha256=GBjF8MzOiLG8ljZYHm0rIs9R_1HALZdblnTLYv7fHhk,29623
|
|
15
|
-
pulumi_consul/catalog_entry.py,sha256=
|
|
15
|
+
pulumi_consul/catalog_entry.py,sha256=N9b7e6lNwPSduis1KQuRUtqzZmZP95cupF41pSjev1I,19179
|
|
16
16
|
pulumi_consul/certificate_authority.py,sha256=97TA0FxbhFIkZfIme4XCaw2wJy3At2vudgDmKJFXQi4,11104
|
|
17
17
|
pulumi_consul/config_entry.py,sha256=Xj1fQeRWuL5Wx7VnMEGndkxqOL_l_pdHHou2XnO-DRM,31570
|
|
18
|
-
pulumi_consul/config_entry_service_defaults.py,sha256
|
|
18
|
+
pulumi_consul/config_entry_service_defaults.py,sha256=-HTZdYhVRRX4MaalkMehTzRJRPIbsj-wfEf2ePn5Kso,58119
|
|
19
19
|
pulumi_consul/config_entry_service_intentions.py,sha256=ktrgciOGAzEpIyO62xcF7n6_6befPZPJQcxZqBsClR4,23106
|
|
20
20
|
pulumi_consul/config_entry_service_resolver.py,sha256=Sm8FaKqwOHiJtUwjQttz-LmdqMAn9B_xzPfsfRfGoI0,37310
|
|
21
21
|
pulumi_consul/config_entry_service_router.py,sha256=Ouvnzp5jOjVrCjJdv0VXmq7ey3x5mNx1zAlZ_w3oKYU,15460
|
|
@@ -27,23 +27,23 @@ pulumi_consul/get_acl_role.py,sha256=_uwfu0AqHRt06DmoTMs_ZMlA4XWaoSQqpsXoPOyZyIU
|
|
|
27
27
|
pulumi_consul/get_acl_token.py,sha256=iiTAcZIVgDQJ5iYsBzlt_4UyZP1aMDR0Pb1w4bgQd-4,11413
|
|
28
28
|
pulumi_consul/get_acl_token_secret_id.py,sha256=3MCaS7QzbCV0di5CLcoLTIKPGXrroxIOw-XK5569_LQ,8184
|
|
29
29
|
pulumi_consul/get_agent_config.py,sha256=nBQqdktw17YyTsnOzA9ji6A2NLERr8mnTbxDFGvgkvI,6937
|
|
30
|
-
pulumi_consul/get_agent_self.py,sha256=
|
|
30
|
+
pulumi_consul/get_agent_self.py,sha256=AZpVH-XDKtwJZN6fupmTT7OxwDYyPcdTsM1u07emDHQ,49979
|
|
31
31
|
pulumi_consul/get_autopilot_health.py,sha256=ot1_RMM1FzVhhV3NWRLJ1F-WHWZUTQbfktl5eqti04s,6196
|
|
32
|
-
pulumi_consul/get_catalog_nodes.py,sha256=
|
|
32
|
+
pulumi_consul/get_catalog_nodes.py,sha256=WHmu7hP4Ojhs771I2_gEo3_NjYxLM_dO2Zs8OgVxfOw,7918
|
|
33
33
|
pulumi_consul/get_catalog_service.py,sha256=Cusb834dKpcYxBtTGuvnsOQpD3PB4KOctnBOl9geYGw,10621
|
|
34
34
|
pulumi_consul/get_catalog_services.py,sha256=RNm0R5szsaw7-6f8RqYG8s-6l_3ZL1klHcMXS3tWxFE,8122
|
|
35
35
|
pulumi_consul/get_config_entry.py,sha256=RPOMbt2tNCKtsl2GAeQbQSgff4uaAnjPjHYRN9sRa28,6669
|
|
36
36
|
pulumi_consul/get_config_entry_v2_exported_services.py,sha256=ZM51OOZv4dbmJjc9LltgPQeqin7CNSe5dlm__M5pcSE,11700
|
|
37
|
-
pulumi_consul/get_datacenters.py,sha256=
|
|
37
|
+
pulumi_consul/get_datacenters.py,sha256=0qQ3IxE-ulY8DE9B7eznBj7UUwUNjYfiMaU0FilJPIE,5191
|
|
38
38
|
pulumi_consul/get_key_prefix.py,sha256=AJsKLkpIqPArKhacqR1ze41KNrc5EFycX4JceVTrg_w,11927
|
|
39
39
|
pulumi_consul/get_keys.py,sha256=ZikBQucdZDd1Hf8ZiwSM9RVsKJQCn7TknqvX6oJ3Qjg,10671
|
|
40
40
|
pulumi_consul/get_network_area_members.py,sha256=IdmXFgZwn_FkZAbAquXrtriSHRlgB8zqoxxzuUIokYw,7304
|
|
41
41
|
pulumi_consul/get_network_segments.py,sha256=BeKSAgTWjUEZDPgld51vPJ3a-BsU_2gY7FQip4TsELg,6050
|
|
42
|
-
pulumi_consul/get_nodes.py,sha256=
|
|
42
|
+
pulumi_consul/get_nodes.py,sha256=hS-ptZebz5cTqxlsfFhsNT18FLLp35STGklm2L5oFTg,7348
|
|
43
43
|
pulumi_consul/get_peering.py,sha256=wVWR2XivYBRS-sdrT5-iUwNm3Z-oMTJMhB4azXuPMrU,7651
|
|
44
44
|
pulumi_consul/get_peerings.py,sha256=nsWFeRWB6msko57firg6LjU9PCXJGH0-CSc2t5pMN_A,3740
|
|
45
45
|
pulumi_consul/get_service.py,sha256=DqBAt2hQJeDkt3rtQUKpBF85tkL4CS1AT9rHdfkQCI8,9971
|
|
46
|
-
pulumi_consul/get_service_health.py,sha256=
|
|
46
|
+
pulumi_consul/get_service_health.py,sha256=GhOuQhZd904UFBRv-gCo25OPSrIyqXJUOJsotc19ZYg,11910
|
|
47
47
|
pulumi_consul/get_services.py,sha256=Ry2KycNObDkl7lFF1TmuZwKWMgHS74uepW3OOPwVhKI,7535
|
|
48
48
|
pulumi_consul/intention.py,sha256=J__aWy5cfYNQyLS8ajjUoJhRhYGZ9nAgwTuxm0c8sgo,27418
|
|
49
49
|
pulumi_consul/key_prefix.py,sha256=HpGg5jh3mi7yj6b30LEYMgL8ndenRXnTxFBhZJot07Q,26945
|
|
@@ -59,14 +59,14 @@ pulumi_consul/peering.py,sha256=tMzsdL9c_V_ATJM6QSxtQ0suCMJ1qZXfZMxKWbFW6i8,2160
|
|
|
59
59
|
pulumi_consul/peering_token.py,sha256=fLVkJGN1Mmv_lz95X4Kct7XdudrhW9hraZVvDvm4kkg,18230
|
|
60
60
|
pulumi_consul/prepared_query.py,sha256=228967xap39IGoQliTHw_Wqti8ZOFrZxS1GYXi67zh8,56118
|
|
61
61
|
pulumi_consul/provider.py,sha256=Z6ckrA3oJTHzP5yoBOv8qdbylQOzGJe-bojl6cIM-X0,27036
|
|
62
|
-
pulumi_consul/pulumi-plugin.json,sha256
|
|
62
|
+
pulumi_consul/pulumi-plugin.json,sha256=pDrvY2Zemr0uelBe3KbHKGzgQKHcQ8YKPrsHGRp-d3Q,83
|
|
63
63
|
pulumi_consul/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
64
64
|
pulumi_consul/service.py,sha256=bcdmGi_IhxsOpJ8o56GBxpTFwx75BBFRdopmhxVziSU,40165
|
|
65
65
|
pulumi_consul/config/__init__.py,sha256=XWnQfVtc2oPapjSXXCdORFJvMpXt_SMJQASWdTRoPmc,296
|
|
66
66
|
pulumi_consul/config/__init__.pyi,sha256=VHdwpEI0Sj5284wes4c2NNazqEQJZu56o5OT0vMcZB8,2760
|
|
67
67
|
pulumi_consul/config/outputs.py,sha256=oUo-zkLjQdIQ0KqF1_T70hE5528dd7-MtE_5Gf7_A-4,3787
|
|
68
68
|
pulumi_consul/config/vars.py,sha256=W1Js4uCv0G817P7T07CCheVkbEmv2YwYQqsCScK8504,4548
|
|
69
|
-
pulumi_consul-3.14.
|
|
70
|
-
pulumi_consul-3.14.
|
|
71
|
-
pulumi_consul-3.14.
|
|
72
|
-
pulumi_consul-3.14.
|
|
69
|
+
pulumi_consul-3.14.0a1768432677.dist-info/METADATA,sha256=495Qx4r6-bRuiwe3PpWplpow_vbvu16U4JpWQpQ7UCQ,4010
|
|
70
|
+
pulumi_consul-3.14.0a1768432677.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
71
|
+
pulumi_consul-3.14.0a1768432677.dist-info/top_level.txt,sha256=SrKSXrIq8AWqnNKrd7pWSC691idGwXi9XMA-DTWwcfg,14
|
|
72
|
+
pulumi_consul-3.14.0a1768432677.dist-info/RECORD,,
|
{pulumi_consul-3.14.0a1757050566.dist-info → pulumi_consul-3.14.0a1768432677.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|