pulumi-consul 3.14.0a1756359280__py3-none-any.whl → 3.14.0a1757050566__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.
@@ -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
 
@@ -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/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
- Consul server. This block can be specified multiple times.
52
- :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
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
- Consul server. This block can be specified multiple times.
332
- :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
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
 
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "resource": true,
3
3
  "name": "consul",
4
- "version": "3.14.0-alpha.1756359280"
4
+ "version": "3.14.0-alpha.1757050566"
5
5
  }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pulumi_consul
3
- Version: 3.14.0a1756359280
3
+ Version: 3.14.0a1757050566
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
@@ -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=Tyl4GcX3VLT_gsouEnkkRci-8TbFZAipowCKh_FV3n8,27250
62
- pulumi_consul/pulumi-plugin.json,sha256=WxFuyoeS7GIGFs5_Fxk19j_oPIb_UyP8Z6TZfqvnaWA,83
61
+ pulumi_consul/provider.py,sha256=Z6ckrA3oJTHzP5yoBOv8qdbylQOzGJe-bojl6cIM-X0,27036
62
+ pulumi_consul/pulumi-plugin.json,sha256=-k0sauhmC537FtEH5e2p768xdfKnmEetn5CQ-AKHGFA,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=hcKl3EAn8tij5nSc8hDmhmo5qQQZMJcP9qLhw5x1k_k,2760
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=akwYvvWeqEr7SKC5BaWVjim_v6AGcEBJkDWwTUKtAvQ,4588
69
- pulumi_consul-3.14.0a1756359280.dist-info/METADATA,sha256=eCyOqTeIvfRcEdf5CzkWmFpqbiLWJMQcMzVo7s5FFZk,4010
70
- pulumi_consul-3.14.0a1756359280.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
71
- pulumi_consul-3.14.0a1756359280.dist-info/top_level.txt,sha256=SrKSXrIq8AWqnNKrd7pWSC691idGwXi9XMA-DTWwcfg,14
72
- pulumi_consul-3.14.0a1756359280.dist-info/RECORD,,
68
+ pulumi_consul/config/vars.py,sha256=W1Js4uCv0G817P7T07CCheVkbEmv2YwYQqsCScK8504,4548
69
+ pulumi_consul-3.14.0a1757050566.dist-info/METADATA,sha256=N72sQiJSqNkHYp2a0LCInq09NYVTz7X910s5WDQe078,4010
70
+ pulumi_consul-3.14.0a1757050566.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
71
+ pulumi_consul-3.14.0a1757050566.dist-info/top_level.txt,sha256=SrKSXrIq8AWqnNKrd7pWSC691idGwXi9XMA-DTWwcfg,14
72
+ pulumi_consul-3.14.0a1757050566.dist-info/RECORD,,