pulumi-consul 3.13.1__py3-none-any.whl → 3.13.2a1761153155__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/catalog_entry.py +4 -0
- pulumi_consul/config/__init__.pyi +5 -10
- pulumi_consul/config/vars.py +5 -10
- pulumi_consul/get_agent_self.py +4 -0
- pulumi_consul/get_service_health.py +4 -0
- pulumi_consul/provider.py +18 -36
- pulumi_consul/pulumi-plugin.json +1 -1
- {pulumi_consul-3.13.1.dist-info → pulumi_consul-3.13.2a1761153155.dist-info}/METADATA +1 -1
- {pulumi_consul-3.13.1.dist-info → pulumi_consul-3.13.2a1761153155.dist-info}/RECORD +11 -11
- {pulumi_consul-3.13.1.dist-info → pulumi_consul-3.13.2a1761153155.dist-info}/WHEEL +0 -0
- {pulumi_consul-3.13.1.dist-info → pulumi_consul-3.13.2a1761153155.dist-info}/top_level.txt +0 -0
pulumi_consul/catalog_entry.py
CHANGED
|
@@ -242,6 +242,8 @@ 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
|
+
|
|
245
247
|
:param str resource_name: The name of the resource.
|
|
246
248
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
247
249
|
:param pulumi.Input[_builtins.str] address: The address of the node being added to,
|
|
@@ -268,6 +270,8 @@ class CatalogEntry(pulumi.CustomResource):
|
|
|
268
270
|
Registers a node or service with the [Consul Catalog](https://www.consul.io/docs/agent/http/catalog.html#catalog_register).
|
|
269
271
|
Currently, defining health checks is not supported.
|
|
270
272
|
|
|
273
|
+
## Example Usage
|
|
274
|
+
|
|
271
275
|
:param str resource_name: The name of the resource.
|
|
272
276
|
:param CatalogEntryArgs args: The arguments to use to populate this resource's properties.
|
|
273
277
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -32,8 +32,7 @@ A path to a PEM-encoded certificate authority used to verify the remote agent's
|
|
|
32
32
|
|
|
33
33
|
caPath: Optional[str]
|
|
34
34
|
"""
|
|
35
|
-
A path to a directory of PEM-encoded certificate authority files to use to check the authenticity of client and server
|
|
36
|
-
connections. Can also be specified with the `CONSUL_CAPATH` environment variable.
|
|
35
|
+
A path to a directory of PEM-encoded certificate authority files to use to check the authenticity of client and server connections. Can also be specified with the `CONSUL_CAPATH` environment variable.
|
|
37
36
|
"""
|
|
38
37
|
|
|
39
38
|
caPem: Optional[str]
|
|
@@ -58,20 +57,17 @@ The datacenter to use. Defaults to that of the agent.
|
|
|
58
57
|
|
|
59
58
|
headers: Optional[str]
|
|
60
59
|
"""
|
|
61
|
-
A configuration block, described below, that provides additional headers to be sent along with all requests to the
|
|
62
|
-
Consul server. This block can be specified multiple times.
|
|
60
|
+
A configuration block, described below, that provides additional headers to be sent along with all requests to the Consul server. This block can be specified multiple times.
|
|
63
61
|
"""
|
|
64
62
|
|
|
65
63
|
httpAuth: Optional[str]
|
|
66
64
|
"""
|
|
67
|
-
HTTP Basic Authentication credentials to be used when communicating with Consul, in the format of either `user` or
|
|
68
|
-
`user:pass`. This may also be specified using the `CONSUL_HTTP_AUTH` environment variable.
|
|
65
|
+
HTTP Basic Authentication credentials to be used when communicating with Consul, in the format of either `user` or `user:pass`. This may also be specified using the `CONSUL_HTTP_AUTH` environment variable.
|
|
69
66
|
"""
|
|
70
67
|
|
|
71
68
|
insecureHttps: Optional[bool]
|
|
72
69
|
"""
|
|
73
|
-
Boolean value to disable SSL certificate verification; setting this value to true is not recommended for production use.
|
|
74
|
-
Only use this with scheme set to "https".
|
|
70
|
+
Boolean value to disable SSL certificate verification; setting this value to true is not recommended for production use. Only use this with scheme set to "https".
|
|
75
71
|
"""
|
|
76
72
|
|
|
77
73
|
keyFile: Optional[str]
|
|
@@ -93,7 +89,6 @@ The URL scheme of the agent to use ("http" or "https"). Defaults to "http".
|
|
|
93
89
|
|
|
94
90
|
token: Optional[str]
|
|
95
91
|
"""
|
|
96
|
-
The ACL token to use by default when making requests to the agent. Can also be specified with `CONSUL_HTTP_TOKEN` or
|
|
97
|
-
`CONSUL_TOKEN` as an environment variable.
|
|
92
|
+
The ACL token to use by default when making requests to the agent. Can also be specified with `CONSUL_HTTP_TOKEN` or `CONSUL_TOKEN` as an environment variable.
|
|
98
93
|
"""
|
|
99
94
|
|
pulumi_consul/config/vars.py
CHANGED
|
@@ -45,8 +45,7 @@ class _ExportableConfig(types.ModuleType):
|
|
|
45
45
|
@_builtins.property
|
|
46
46
|
def ca_path(self) -> Optional[str]:
|
|
47
47
|
"""
|
|
48
|
-
A path to a directory of PEM-encoded certificate authority files to use to check the authenticity of client and server
|
|
49
|
-
connections. Can also be specified with the `CONSUL_CAPATH` environment variable.
|
|
48
|
+
A path to a directory of PEM-encoded certificate authority files to use to check the authenticity of client and server connections. Can also be specified with the `CONSUL_CAPATH` environment variable.
|
|
50
49
|
"""
|
|
51
50
|
return __config__.get('caPath')
|
|
52
51
|
|
|
@@ -81,24 +80,21 @@ class _ExportableConfig(types.ModuleType):
|
|
|
81
80
|
@_builtins.property
|
|
82
81
|
def headers(self) -> Optional[str]:
|
|
83
82
|
"""
|
|
84
|
-
A configuration block, described below, that provides additional headers to be sent along with all requests to the
|
|
85
|
-
Consul server. This block can be specified multiple times.
|
|
83
|
+
A configuration block, described below, that provides additional headers to be sent along with all requests to the Consul server. This block can be specified multiple times.
|
|
86
84
|
"""
|
|
87
85
|
return __config__.get('headers')
|
|
88
86
|
|
|
89
87
|
@_builtins.property
|
|
90
88
|
def http_auth(self) -> Optional[str]:
|
|
91
89
|
"""
|
|
92
|
-
HTTP Basic Authentication credentials to be used when communicating with Consul, in the format of either `user` or
|
|
93
|
-
`user:pass`. This may also be specified using the `CONSUL_HTTP_AUTH` environment variable.
|
|
90
|
+
HTTP Basic Authentication credentials to be used when communicating with Consul, in the format of either `user` or `user:pass`. This may also be specified using the `CONSUL_HTTP_AUTH` environment variable.
|
|
94
91
|
"""
|
|
95
92
|
return __config__.get('httpAuth')
|
|
96
93
|
|
|
97
94
|
@_builtins.property
|
|
98
95
|
def insecure_https(self) -> Optional[bool]:
|
|
99
96
|
"""
|
|
100
|
-
Boolean value to disable SSL certificate verification; setting this value to true is not recommended for production use.
|
|
101
|
-
Only use this with scheme set to "https".
|
|
97
|
+
Boolean value to disable SSL certificate verification; setting this value to true is not recommended for production use. Only use this with scheme set to "https".
|
|
102
98
|
"""
|
|
103
99
|
return __config__.get_bool('insecureHttps')
|
|
104
100
|
|
|
@@ -130,8 +126,7 @@ class _ExportableConfig(types.ModuleType):
|
|
|
130
126
|
@_builtins.property
|
|
131
127
|
def token(self) -> Optional[str]:
|
|
132
128
|
"""
|
|
133
|
-
The ACL token to use by default when making requests to the agent. Can also be specified with `CONSUL_HTTP_TOKEN` or
|
|
134
|
-
`CONSUL_TOKEN` as an environment variable.
|
|
129
|
+
The ACL token to use by default when making requests to the agent. Can also be specified with `CONSUL_HTTP_TOKEN` or `CONSUL_TOKEN` as an environment variable.
|
|
135
130
|
"""
|
|
136
131
|
return __config__.get('token')
|
|
137
132
|
|
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)
|
|
@@ -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/provider.py
CHANGED
|
@@ -41,23 +41,18 @@ class ProviderArgs:
|
|
|
41
41
|
:param pulumi.Input[_builtins.str] address: The HTTP(S) API address of the agent to use. Defaults to "127.0.0.1:8500".
|
|
42
42
|
:param pulumi.Input['ProviderAuthJwtArgs'] auth_jwt: Authenticates to Consul using a JWT authentication method.
|
|
43
43
|
:param pulumi.Input[_builtins.str] ca_file: A path to a PEM-encoded certificate authority used to verify the remote agent's certificate.
|
|
44
|
-
:param pulumi.Input[_builtins.str] ca_path: A path to a directory of PEM-encoded certificate authority files to use to check the authenticity of client and server
|
|
45
|
-
connections. Can also be specified with the `CONSUL_CAPATH` environment variable.
|
|
44
|
+
:param pulumi.Input[_builtins.str] ca_path: A path to a directory of PEM-encoded certificate authority files to use to check the authenticity of client and server connections. Can also be specified with the `CONSUL_CAPATH` environment variable.
|
|
46
45
|
:param pulumi.Input[_builtins.str] ca_pem: PEM-encoded certificate authority used to verify the remote agent's certificate.
|
|
47
46
|
:param pulumi.Input[_builtins.str] cert_file: A path to a PEM-encoded certificate provided to the remote agent; requires use of `key_file` or `key_pem`.
|
|
48
47
|
:param pulumi.Input[_builtins.str] cert_pem: PEM-encoded certificate provided to the remote agent; requires use of `key_file` or `key_pem`.
|
|
49
48
|
:param pulumi.Input[_builtins.str] datacenter: The datacenter to use. Defaults to that of the agent.
|
|
50
|
-
:param pulumi.Input[Sequence[pulumi.Input['ProviderHeaderArgs']]] headers: A configuration block, described below, that provides additional headers to be sent along with all requests to the
|
|
51
|
-
|
|
52
|
-
:param pulumi.Input[_builtins.
|
|
53
|
-
`user:pass`. This may also be specified using the `CONSUL_HTTP_AUTH` environment variable.
|
|
54
|
-
:param pulumi.Input[_builtins.bool] insecure_https: Boolean value to disable SSL certificate verification; setting this value to true is not recommended for production use.
|
|
55
|
-
Only use this with scheme set to "https".
|
|
49
|
+
:param pulumi.Input[Sequence[pulumi.Input['ProviderHeaderArgs']]] headers: A configuration block, described below, that provides additional headers to be sent along with all requests to the Consul server. This block can be specified multiple times.
|
|
50
|
+
:param pulumi.Input[_builtins.str] http_auth: HTTP Basic Authentication credentials to be used when communicating with Consul, in the format of either `user` or `user:pass`. This may also be specified using the `CONSUL_HTTP_AUTH` environment variable.
|
|
51
|
+
:param pulumi.Input[_builtins.bool] insecure_https: Boolean value to disable SSL certificate verification; setting this value to true is not recommended for production use. Only use this with scheme set to "https".
|
|
56
52
|
:param pulumi.Input[_builtins.str] key_file: A path to a PEM-encoded private key, required if `cert_file` or `cert_pem` is specified.
|
|
57
53
|
:param pulumi.Input[_builtins.str] key_pem: PEM-encoded private key, required if `cert_file` or `cert_pem` is specified.
|
|
58
54
|
:param pulumi.Input[_builtins.str] scheme: The URL scheme of the agent to use ("http" or "https"). Defaults to "http".
|
|
59
|
-
:param pulumi.Input[_builtins.str] token: The ACL token to use by default when making requests to the agent. Can also be specified with `CONSUL_HTTP_TOKEN` or
|
|
60
|
-
`CONSUL_TOKEN` as an environment variable.
|
|
55
|
+
:param pulumi.Input[_builtins.str] token: The ACL token to use by default when making requests to the agent. Can also be specified with `CONSUL_HTTP_TOKEN` or `CONSUL_TOKEN` as an environment variable.
|
|
61
56
|
"""
|
|
62
57
|
if address is not None:
|
|
63
58
|
pulumi.set(__self__, "address", address)
|
|
@@ -132,8 +127,7 @@ class ProviderArgs:
|
|
|
132
127
|
@pulumi.getter(name="caPath")
|
|
133
128
|
def ca_path(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
134
129
|
"""
|
|
135
|
-
A path to a directory of PEM-encoded certificate authority files to use to check the authenticity of client and server
|
|
136
|
-
connections. Can also be specified with the `CONSUL_CAPATH` environment variable.
|
|
130
|
+
A path to a directory of PEM-encoded certificate authority files to use to check the authenticity of client and server connections. Can also be specified with the `CONSUL_CAPATH` environment variable.
|
|
137
131
|
"""
|
|
138
132
|
return pulumi.get(self, "ca_path")
|
|
139
133
|
|
|
@@ -193,8 +187,7 @@ class ProviderArgs:
|
|
|
193
187
|
@pulumi.getter
|
|
194
188
|
def headers(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ProviderHeaderArgs']]]]:
|
|
195
189
|
"""
|
|
196
|
-
A configuration block, described below, that provides additional headers to be sent along with all requests to the
|
|
197
|
-
Consul server. This block can be specified multiple times.
|
|
190
|
+
A configuration block, described below, that provides additional headers to be sent along with all requests to the Consul server. This block can be specified multiple times.
|
|
198
191
|
"""
|
|
199
192
|
return pulumi.get(self, "headers")
|
|
200
193
|
|
|
@@ -206,8 +199,7 @@ class ProviderArgs:
|
|
|
206
199
|
@pulumi.getter(name="httpAuth")
|
|
207
200
|
def http_auth(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
208
201
|
"""
|
|
209
|
-
HTTP Basic Authentication credentials to be used when communicating with Consul, in the format of either `user` or
|
|
210
|
-
`user:pass`. This may also be specified using the `CONSUL_HTTP_AUTH` environment variable.
|
|
202
|
+
HTTP Basic Authentication credentials to be used when communicating with Consul, in the format of either `user` or `user:pass`. This may also be specified using the `CONSUL_HTTP_AUTH` environment variable.
|
|
211
203
|
"""
|
|
212
204
|
return pulumi.get(self, "http_auth")
|
|
213
205
|
|
|
@@ -219,8 +211,7 @@ class ProviderArgs:
|
|
|
219
211
|
@pulumi.getter(name="insecureHttps")
|
|
220
212
|
def insecure_https(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
221
213
|
"""
|
|
222
|
-
Boolean value to disable SSL certificate verification; setting this value to true is not recommended for production use.
|
|
223
|
-
Only use this with scheme set to "https".
|
|
214
|
+
Boolean value to disable SSL certificate verification; setting this value to true is not recommended for production use. Only use this with scheme set to "https".
|
|
224
215
|
"""
|
|
225
216
|
return pulumi.get(self, "insecure_https")
|
|
226
217
|
|
|
@@ -277,8 +268,7 @@ class ProviderArgs:
|
|
|
277
268
|
@pulumi.getter
|
|
278
269
|
def token(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
279
270
|
"""
|
|
280
|
-
The ACL token to use by default when making requests to the agent. Can also be specified with `CONSUL_HTTP_TOKEN` or
|
|
281
|
-
`CONSUL_TOKEN` as an environment variable.
|
|
271
|
+
The ACL token to use by default when making requests to the agent. Can also be specified with `CONSUL_HTTP_TOKEN` or `CONSUL_TOKEN` as an environment variable.
|
|
282
272
|
"""
|
|
283
273
|
return pulumi.get(self, "token")
|
|
284
274
|
|
|
@@ -321,23 +311,18 @@ class Provider(pulumi.ProviderResource):
|
|
|
321
311
|
:param pulumi.Input[_builtins.str] address: The HTTP(S) API address of the agent to use. Defaults to "127.0.0.1:8500".
|
|
322
312
|
:param pulumi.Input[Union['ProviderAuthJwtArgs', 'ProviderAuthJwtArgsDict']] auth_jwt: Authenticates to Consul using a JWT authentication method.
|
|
323
313
|
:param pulumi.Input[_builtins.str] ca_file: A path to a PEM-encoded certificate authority used to verify the remote agent's certificate.
|
|
324
|
-
:param pulumi.Input[_builtins.str] ca_path: A path to a directory of PEM-encoded certificate authority files to use to check the authenticity of client and server
|
|
325
|
-
connections. Can also be specified with the `CONSUL_CAPATH` environment variable.
|
|
314
|
+
:param pulumi.Input[_builtins.str] ca_path: A path to a directory of PEM-encoded certificate authority files to use to check the authenticity of client and server connections. Can also be specified with the `CONSUL_CAPATH` environment variable.
|
|
326
315
|
:param pulumi.Input[_builtins.str] ca_pem: PEM-encoded certificate authority used to verify the remote agent's certificate.
|
|
327
316
|
:param pulumi.Input[_builtins.str] cert_file: A path to a PEM-encoded certificate provided to the remote agent; requires use of `key_file` or `key_pem`.
|
|
328
317
|
:param pulumi.Input[_builtins.str] cert_pem: PEM-encoded certificate provided to the remote agent; requires use of `key_file` or `key_pem`.
|
|
329
318
|
:param pulumi.Input[_builtins.str] datacenter: The datacenter to use. Defaults to that of the agent.
|
|
330
|
-
:param pulumi.Input[Sequence[pulumi.Input[Union['ProviderHeaderArgs', 'ProviderHeaderArgsDict']]]] headers: A configuration block, described below, that provides additional headers to be sent along with all requests to the
|
|
331
|
-
|
|
332
|
-
:param pulumi.Input[_builtins.
|
|
333
|
-
`user:pass`. This may also be specified using the `CONSUL_HTTP_AUTH` environment variable.
|
|
334
|
-
:param pulumi.Input[_builtins.bool] insecure_https: Boolean value to disable SSL certificate verification; setting this value to true is not recommended for production use.
|
|
335
|
-
Only use this with scheme set to "https".
|
|
319
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['ProviderHeaderArgs', 'ProviderHeaderArgsDict']]]] headers: A configuration block, described below, that provides additional headers to be sent along with all requests to the Consul server. This block can be specified multiple times.
|
|
320
|
+
:param pulumi.Input[_builtins.str] http_auth: HTTP Basic Authentication credentials to be used when communicating with Consul, in the format of either `user` or `user:pass`. This may also be specified using the `CONSUL_HTTP_AUTH` environment variable.
|
|
321
|
+
:param pulumi.Input[_builtins.bool] insecure_https: Boolean value to disable SSL certificate verification; setting this value to true is not recommended for production use. Only use this with scheme set to "https".
|
|
336
322
|
:param pulumi.Input[_builtins.str] key_file: A path to a PEM-encoded private key, required if `cert_file` or `cert_pem` is specified.
|
|
337
323
|
:param pulumi.Input[_builtins.str] key_pem: PEM-encoded private key, required if `cert_file` or `cert_pem` is specified.
|
|
338
324
|
:param pulumi.Input[_builtins.str] scheme: The URL scheme of the agent to use ("http" or "https"). Defaults to "http".
|
|
339
|
-
:param pulumi.Input[_builtins.str] token: The ACL token to use by default when making requests to the agent. Can also be specified with `CONSUL_HTTP_TOKEN` or
|
|
340
|
-
`CONSUL_TOKEN` as an environment variable.
|
|
325
|
+
:param pulumi.Input[_builtins.str] token: The ACL token to use by default when making requests to the agent. Can also be specified with `CONSUL_HTTP_TOKEN` or `CONSUL_TOKEN` as an environment variable.
|
|
341
326
|
"""
|
|
342
327
|
...
|
|
343
328
|
@overload
|
|
@@ -435,8 +420,7 @@ class Provider(pulumi.ProviderResource):
|
|
|
435
420
|
@pulumi.getter(name="caPath")
|
|
436
421
|
def ca_path(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
437
422
|
"""
|
|
438
|
-
A path to a directory of PEM-encoded certificate authority files to use to check the authenticity of client and server
|
|
439
|
-
connections. Can also be specified with the `CONSUL_CAPATH` environment variable.
|
|
423
|
+
A path to a directory of PEM-encoded certificate authority files to use to check the authenticity of client and server connections. Can also be specified with the `CONSUL_CAPATH` environment variable.
|
|
440
424
|
"""
|
|
441
425
|
return pulumi.get(self, "ca_path")
|
|
442
426
|
|
|
@@ -476,8 +460,7 @@ class Provider(pulumi.ProviderResource):
|
|
|
476
460
|
@pulumi.getter(name="httpAuth")
|
|
477
461
|
def http_auth(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
478
462
|
"""
|
|
479
|
-
HTTP Basic Authentication credentials to be used when communicating with Consul, in the format of either `user` or
|
|
480
|
-
`user:pass`. This may also be specified using the `CONSUL_HTTP_AUTH` environment variable.
|
|
463
|
+
HTTP Basic Authentication credentials to be used when communicating with Consul, in the format of either `user` or `user:pass`. This may also be specified using the `CONSUL_HTTP_AUTH` environment variable.
|
|
481
464
|
"""
|
|
482
465
|
return pulumi.get(self, "http_auth")
|
|
483
466
|
|
|
@@ -514,8 +497,7 @@ class Provider(pulumi.ProviderResource):
|
|
|
514
497
|
@pulumi.getter
|
|
515
498
|
def token(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
516
499
|
"""
|
|
517
|
-
The ACL token to use by default when making requests to the agent. Can also be specified with `CONSUL_HTTP_TOKEN` or
|
|
518
|
-
`CONSUL_TOKEN` as an environment variable.
|
|
500
|
+
The ACL token to use by default when making requests to the agent. Can also be specified with `CONSUL_HTTP_TOKEN` or `CONSUL_TOKEN` as an environment variable.
|
|
519
501
|
"""
|
|
520
502
|
return pulumi.get(self, "token")
|
|
521
503
|
|
pulumi_consul/pulumi-plugin.json
CHANGED
|
@@ -12,7 +12,7 @@ pulumi_consul/acl_token_role_attachment.py,sha256=okDJ8mNOBGyTAq3q-y5AZE1tDNyXzd
|
|
|
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=B98PGIkC5E9D9VQ_bcSsKjxDOnfR7PgT0UTSxV-xbt0,18235
|
|
16
16
|
pulumi_consul/certificate_authority.py,sha256=97TA0FxbhFIkZfIme4XCaw2wJy3At2vudgDmKJFXQi4,11104
|
|
17
17
|
pulumi_consul/config_entry.py,sha256=Xj1fQeRWuL5Wx7VnMEGndkxqOL_l_pdHHou2XnO-DRM,31570
|
|
18
18
|
pulumi_consul/config_entry_service_defaults.py,sha256=E1Z629PkJymuPeWbnwDbyuKhFsW8uj1fvZmKpP-S13A,56521
|
|
@@ -27,7 +27,7 @@ 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
32
|
pulumi_consul/get_catalog_nodes.py,sha256=eAzmwp2Cy7gXKkb4luXLiMHLCymEgB3bHA-vz9hhaI8,6934
|
|
33
33
|
pulumi_consul/get_catalog_service.py,sha256=Cusb834dKpcYxBtTGuvnsOQpD3PB4KOctnBOl9geYGw,10621
|
|
@@ -43,7 +43,7 @@ pulumi_consul/get_nodes.py,sha256=WDB0IoqcoP0cCtsSEj0ketsWyDJBMDVYHhMJAzkXSOs,63
|
|
|
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
|
|
@@ -58,15 +58,15 @@ pulumi_consul/outputs.py,sha256=kC4OVQ1TF3V3EMFKkL_2b74kmA6DKlK2v_KppJA_ngw,2492
|
|
|
58
58
|
pulumi_consul/peering.py,sha256=tMzsdL9c_V_ATJM6QSxtQ0suCMJ1qZXfZMxKWbFW6i8,21606
|
|
59
59
|
pulumi_consul/peering_token.py,sha256=fLVkJGN1Mmv_lz95X4Kct7XdudrhW9hraZVvDvm4kkg,18230
|
|
60
60
|
pulumi_consul/prepared_query.py,sha256=228967xap39IGoQliTHw_Wqti8ZOFrZxS1GYXi67zh8,56118
|
|
61
|
-
pulumi_consul/provider.py,sha256=
|
|
62
|
-
pulumi_consul/pulumi-plugin.json,sha256=
|
|
61
|
+
pulumi_consul/provider.py,sha256=Z6ckrA3oJTHzP5yoBOv8qdbylQOzGJe-bojl6cIM-X0,27036
|
|
62
|
+
pulumi_consul/pulumi-plugin.json,sha256=YehcjFNv8lVCU0_OvU-bKNbQnMykwEqYF2CnnbY8bXk,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
|
-
pulumi_consul/config/__init__.pyi,sha256=
|
|
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
|
-
pulumi_consul/config/vars.py,sha256=
|
|
69
|
-
pulumi_consul-3.13.
|
|
70
|
-
pulumi_consul-3.13.
|
|
71
|
-
pulumi_consul-3.13.
|
|
72
|
-
pulumi_consul-3.13.
|
|
68
|
+
pulumi_consul/config/vars.py,sha256=W1Js4uCv0G817P7T07CCheVkbEmv2YwYQqsCScK8504,4548
|
|
69
|
+
pulumi_consul-3.13.2a1761153155.dist-info/METADATA,sha256=rfMO68ISsF4NReL4cPYV3Jq3MzpbHF1Edi0wna4ASXk,4010
|
|
70
|
+
pulumi_consul-3.13.2a1761153155.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
71
|
+
pulumi_consul-3.13.2a1761153155.dist-info/top_level.txt,sha256=SrKSXrIq8AWqnNKrd7pWSC691idGwXi9XMA-DTWwcfg,14
|
|
72
|
+
pulumi_consul-3.13.2a1761153155.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|