pulumi-vault 7.0.0a1750489873__py3-none-any.whl → 7.1.0a1752118888__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_vault/__init__.py +17 -0
- pulumi_vault/database/_inputs.py +48 -0
- pulumi_vault/database/outputs.py +30 -0
- pulumi_vault/database/secret_backend_connection.py +10 -0
- pulumi_vault/pkisecret/__init__.py +2 -0
- pulumi_vault/pkisecret/_inputs.py +94 -6
- pulumi_vault/pkisecret/backend_config_scep.py +692 -0
- pulumi_vault/pkisecret/get_backend_config_scep.py +252 -0
- pulumi_vault/pkisecret/outputs.py +112 -8
- pulumi_vault/pkisecret/secret_backend_root_sign_intermediate.py +61 -14
- pulumi_vault/pulumi-plugin.json +1 -1
- pulumi_vault/quota_rate_limit.py +153 -3
- pulumi_vault/scep_auth_backend_role.py +855 -0
- pulumi_vault/transit/__init__.py +1 -0
- pulumi_vault/transit/get_cmac.py +257 -0
- pulumi_vault/transit/get_verify.py +16 -1
- {pulumi_vault-7.0.0a1750489873.dist-info → pulumi_vault-7.1.0a1752118888.dist-info}/METADATA +1 -1
- {pulumi_vault-7.0.0a1750489873.dist-info → pulumi_vault-7.1.0a1752118888.dist-info}/RECORD +20 -16
- {pulumi_vault-7.0.0a1750489873.dist-info → pulumi_vault-7.1.0a1752118888.dist-info}/WHEEL +0 -0
- {pulumi_vault-7.0.0a1750489873.dist-info → pulumi_vault-7.1.0a1752118888.dist-info}/top_level.txt +0 -0
pulumi_vault/transit/__init__.py
CHANGED
@@ -0,0 +1,257 @@
|
|
1
|
+
# coding=utf-8
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
+
|
5
|
+
import builtins
|
6
|
+
import copy
|
7
|
+
import warnings
|
8
|
+
import sys
|
9
|
+
import pulumi
|
10
|
+
import pulumi.runtime
|
11
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
12
|
+
if sys.version_info >= (3, 11):
|
13
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
14
|
+
else:
|
15
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
16
|
+
from .. import _utilities
|
17
|
+
|
18
|
+
__all__ = [
|
19
|
+
'GetCmacResult',
|
20
|
+
'AwaitableGetCmacResult',
|
21
|
+
'get_cmac',
|
22
|
+
'get_cmac_output',
|
23
|
+
]
|
24
|
+
|
25
|
+
@pulumi.output_type
|
26
|
+
class GetCmacResult:
|
27
|
+
"""
|
28
|
+
A collection of values returned by getCmac.
|
29
|
+
"""
|
30
|
+
def __init__(__self__, batch_inputs=None, batch_results=None, cmac=None, id=None, input=None, key_version=None, mac_length=None, name=None, namespace=None, path=None, url_mac_length=None):
|
31
|
+
if batch_inputs and not isinstance(batch_inputs, list):
|
32
|
+
raise TypeError("Expected argument 'batch_inputs' to be a list")
|
33
|
+
pulumi.set(__self__, "batch_inputs", batch_inputs)
|
34
|
+
if batch_results and not isinstance(batch_results, list):
|
35
|
+
raise TypeError("Expected argument 'batch_results' to be a list")
|
36
|
+
pulumi.set(__self__, "batch_results", batch_results)
|
37
|
+
if cmac and not isinstance(cmac, str):
|
38
|
+
raise TypeError("Expected argument 'cmac' to be a str")
|
39
|
+
pulumi.set(__self__, "cmac", cmac)
|
40
|
+
if id and not isinstance(id, str):
|
41
|
+
raise TypeError("Expected argument 'id' to be a str")
|
42
|
+
pulumi.set(__self__, "id", id)
|
43
|
+
if input and not isinstance(input, str):
|
44
|
+
raise TypeError("Expected argument 'input' to be a str")
|
45
|
+
pulumi.set(__self__, "input", input)
|
46
|
+
if key_version and not isinstance(key_version, int):
|
47
|
+
raise TypeError("Expected argument 'key_version' to be a int")
|
48
|
+
pulumi.set(__self__, "key_version", key_version)
|
49
|
+
if mac_length and not isinstance(mac_length, int):
|
50
|
+
raise TypeError("Expected argument 'mac_length' to be a int")
|
51
|
+
pulumi.set(__self__, "mac_length", mac_length)
|
52
|
+
if name and not isinstance(name, str):
|
53
|
+
raise TypeError("Expected argument 'name' to be a str")
|
54
|
+
pulumi.set(__self__, "name", name)
|
55
|
+
if namespace and not isinstance(namespace, str):
|
56
|
+
raise TypeError("Expected argument 'namespace' to be a str")
|
57
|
+
pulumi.set(__self__, "namespace", namespace)
|
58
|
+
if path and not isinstance(path, str):
|
59
|
+
raise TypeError("Expected argument 'path' to be a str")
|
60
|
+
pulumi.set(__self__, "path", path)
|
61
|
+
if url_mac_length and not isinstance(url_mac_length, int):
|
62
|
+
raise TypeError("Expected argument 'url_mac_length' to be a int")
|
63
|
+
pulumi.set(__self__, "url_mac_length", url_mac_length)
|
64
|
+
|
65
|
+
@property
|
66
|
+
@pulumi.getter(name="batchInputs")
|
67
|
+
def batch_inputs(self) -> Optional[Sequence[Mapping[str, builtins.str]]]:
|
68
|
+
return pulumi.get(self, "batch_inputs")
|
69
|
+
|
70
|
+
@property
|
71
|
+
@pulumi.getter(name="batchResults")
|
72
|
+
def batch_results(self) -> Sequence[Mapping[str, builtins.str]]:
|
73
|
+
"""
|
74
|
+
The results returned from Vault if using `batch_input`
|
75
|
+
"""
|
76
|
+
return pulumi.get(self, "batch_results")
|
77
|
+
|
78
|
+
@property
|
79
|
+
@pulumi.getter
|
80
|
+
def cmac(self) -> builtins.str:
|
81
|
+
"""
|
82
|
+
The CMAC returned from Vault if using `input`
|
83
|
+
"""
|
84
|
+
return pulumi.get(self, "cmac")
|
85
|
+
|
86
|
+
@property
|
87
|
+
@pulumi.getter
|
88
|
+
def id(self) -> builtins.str:
|
89
|
+
"""
|
90
|
+
The provider-assigned unique ID for this managed resource.
|
91
|
+
"""
|
92
|
+
return pulumi.get(self, "id")
|
93
|
+
|
94
|
+
@property
|
95
|
+
@pulumi.getter
|
96
|
+
def input(self) -> Optional[builtins.str]:
|
97
|
+
return pulumi.get(self, "input")
|
98
|
+
|
99
|
+
@property
|
100
|
+
@pulumi.getter(name="keyVersion")
|
101
|
+
def key_version(self) -> Optional[builtins.int]:
|
102
|
+
return pulumi.get(self, "key_version")
|
103
|
+
|
104
|
+
@property
|
105
|
+
@pulumi.getter(name="macLength")
|
106
|
+
def mac_length(self) -> Optional[builtins.int]:
|
107
|
+
return pulumi.get(self, "mac_length")
|
108
|
+
|
109
|
+
@property
|
110
|
+
@pulumi.getter
|
111
|
+
def name(self) -> builtins.str:
|
112
|
+
return pulumi.get(self, "name")
|
113
|
+
|
114
|
+
@property
|
115
|
+
@pulumi.getter
|
116
|
+
def namespace(self) -> Optional[builtins.str]:
|
117
|
+
return pulumi.get(self, "namespace")
|
118
|
+
|
119
|
+
@property
|
120
|
+
@pulumi.getter
|
121
|
+
def path(self) -> builtins.str:
|
122
|
+
return pulumi.get(self, "path")
|
123
|
+
|
124
|
+
@property
|
125
|
+
@pulumi.getter(name="urlMacLength")
|
126
|
+
def url_mac_length(self) -> Optional[builtins.int]:
|
127
|
+
return pulumi.get(self, "url_mac_length")
|
128
|
+
|
129
|
+
|
130
|
+
class AwaitableGetCmacResult(GetCmacResult):
|
131
|
+
# pylint: disable=using-constant-test
|
132
|
+
def __await__(self):
|
133
|
+
if False:
|
134
|
+
yield self
|
135
|
+
return GetCmacResult(
|
136
|
+
batch_inputs=self.batch_inputs,
|
137
|
+
batch_results=self.batch_results,
|
138
|
+
cmac=self.cmac,
|
139
|
+
id=self.id,
|
140
|
+
input=self.input,
|
141
|
+
key_version=self.key_version,
|
142
|
+
mac_length=self.mac_length,
|
143
|
+
name=self.name,
|
144
|
+
namespace=self.namespace,
|
145
|
+
path=self.path,
|
146
|
+
url_mac_length=self.url_mac_length)
|
147
|
+
|
148
|
+
|
149
|
+
def get_cmac(batch_inputs: Optional[Sequence[Mapping[str, builtins.str]]] = None,
|
150
|
+
batch_results: Optional[Sequence[Mapping[str, builtins.str]]] = None,
|
151
|
+
cmac: Optional[builtins.str] = None,
|
152
|
+
input: Optional[builtins.str] = None,
|
153
|
+
key_version: Optional[builtins.int] = None,
|
154
|
+
mac_length: Optional[builtins.int] = None,
|
155
|
+
name: Optional[builtins.str] = None,
|
156
|
+
namespace: Optional[builtins.str] = None,
|
157
|
+
path: Optional[builtins.str] = None,
|
158
|
+
url_mac_length: Optional[builtins.int] = None,
|
159
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetCmacResult:
|
160
|
+
"""
|
161
|
+
This is a data source which can be used to generate a CMAC using a Vault Transit key.
|
162
|
+
|
163
|
+
## Example Usage
|
164
|
+
|
165
|
+
```python
|
166
|
+
import pulumi
|
167
|
+
import pulumi_vault as vault
|
168
|
+
|
169
|
+
test = vault.transit.get_cmac(path="transit",
|
170
|
+
name="test",
|
171
|
+
input="aGVsbG8gd29ybGQ=")
|
172
|
+
```
|
173
|
+
|
174
|
+
|
175
|
+
:param Sequence[Mapping[str, builtins.str]] batch_results: The results returned from Vault if using `batch_input`
|
176
|
+
:param builtins.str cmac: The CMAC returned from Vault if using `input`
|
177
|
+
"""
|
178
|
+
__args__ = dict()
|
179
|
+
__args__['batchInputs'] = batch_inputs
|
180
|
+
__args__['batchResults'] = batch_results
|
181
|
+
__args__['cmac'] = cmac
|
182
|
+
__args__['input'] = input
|
183
|
+
__args__['keyVersion'] = key_version
|
184
|
+
__args__['macLength'] = mac_length
|
185
|
+
__args__['name'] = name
|
186
|
+
__args__['namespace'] = namespace
|
187
|
+
__args__['path'] = path
|
188
|
+
__args__['urlMacLength'] = url_mac_length
|
189
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
190
|
+
__ret__ = pulumi.runtime.invoke('vault:transit/getCmac:getCmac', __args__, opts=opts, typ=GetCmacResult).value
|
191
|
+
|
192
|
+
return AwaitableGetCmacResult(
|
193
|
+
batch_inputs=pulumi.get(__ret__, 'batch_inputs'),
|
194
|
+
batch_results=pulumi.get(__ret__, 'batch_results'),
|
195
|
+
cmac=pulumi.get(__ret__, 'cmac'),
|
196
|
+
id=pulumi.get(__ret__, 'id'),
|
197
|
+
input=pulumi.get(__ret__, 'input'),
|
198
|
+
key_version=pulumi.get(__ret__, 'key_version'),
|
199
|
+
mac_length=pulumi.get(__ret__, 'mac_length'),
|
200
|
+
name=pulumi.get(__ret__, 'name'),
|
201
|
+
namespace=pulumi.get(__ret__, 'namespace'),
|
202
|
+
path=pulumi.get(__ret__, 'path'),
|
203
|
+
url_mac_length=pulumi.get(__ret__, 'url_mac_length'))
|
204
|
+
def get_cmac_output(batch_inputs: Optional[pulumi.Input[Optional[Sequence[Mapping[str, builtins.str]]]]] = None,
|
205
|
+
batch_results: Optional[pulumi.Input[Optional[Sequence[Mapping[str, builtins.str]]]]] = None,
|
206
|
+
cmac: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
207
|
+
input: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
208
|
+
key_version: Optional[pulumi.Input[Optional[builtins.int]]] = None,
|
209
|
+
mac_length: Optional[pulumi.Input[Optional[builtins.int]]] = None,
|
210
|
+
name: Optional[pulumi.Input[builtins.str]] = None,
|
211
|
+
namespace: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
212
|
+
path: Optional[pulumi.Input[builtins.str]] = None,
|
213
|
+
url_mac_length: Optional[pulumi.Input[Optional[builtins.int]]] = None,
|
214
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetCmacResult]:
|
215
|
+
"""
|
216
|
+
This is a data source which can be used to generate a CMAC using a Vault Transit key.
|
217
|
+
|
218
|
+
## Example Usage
|
219
|
+
|
220
|
+
```python
|
221
|
+
import pulumi
|
222
|
+
import pulumi_vault as vault
|
223
|
+
|
224
|
+
test = vault.transit.get_cmac(path="transit",
|
225
|
+
name="test",
|
226
|
+
input="aGVsbG8gd29ybGQ=")
|
227
|
+
```
|
228
|
+
|
229
|
+
|
230
|
+
:param Sequence[Mapping[str, builtins.str]] batch_results: The results returned from Vault if using `batch_input`
|
231
|
+
:param builtins.str cmac: The CMAC returned from Vault if using `input`
|
232
|
+
"""
|
233
|
+
__args__ = dict()
|
234
|
+
__args__['batchInputs'] = batch_inputs
|
235
|
+
__args__['batchResults'] = batch_results
|
236
|
+
__args__['cmac'] = cmac
|
237
|
+
__args__['input'] = input
|
238
|
+
__args__['keyVersion'] = key_version
|
239
|
+
__args__['macLength'] = mac_length
|
240
|
+
__args__['name'] = name
|
241
|
+
__args__['namespace'] = namespace
|
242
|
+
__args__['path'] = path
|
243
|
+
__args__['urlMacLength'] = url_mac_length
|
244
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
245
|
+
__ret__ = pulumi.runtime.invoke_output('vault:transit/getCmac:getCmac', __args__, opts=opts, typ=GetCmacResult)
|
246
|
+
return __ret__.apply(lambda __response__: GetCmacResult(
|
247
|
+
batch_inputs=pulumi.get(__response__, 'batch_inputs'),
|
248
|
+
batch_results=pulumi.get(__response__, 'batch_results'),
|
249
|
+
cmac=pulumi.get(__response__, 'cmac'),
|
250
|
+
id=pulumi.get(__response__, 'id'),
|
251
|
+
input=pulumi.get(__response__, 'input'),
|
252
|
+
key_version=pulumi.get(__response__, 'key_version'),
|
253
|
+
mac_length=pulumi.get(__response__, 'mac_length'),
|
254
|
+
name=pulumi.get(__response__, 'name'),
|
255
|
+
namespace=pulumi.get(__response__, 'namespace'),
|
256
|
+
path=pulumi.get(__response__, 'path'),
|
257
|
+
url_mac_length=pulumi.get(__response__, 'url_mac_length')))
|
@@ -27,7 +27,7 @@ class GetVerifyResult:
|
|
27
27
|
"""
|
28
28
|
A collection of values returned by getVerify.
|
29
29
|
"""
|
30
|
-
def __init__(__self__, batch_inputs=None, batch_results=None, cmac=None, context=None, hash_algorithm=None, hmac=None, id=None, input=None, marshaling_algorithm=None, name=None, namespace=None, path=None, prehashed=None, reference=None, salt_length=None, signature=None, signature_algorithm=None, signature_context=None, valid=None):
|
30
|
+
def __init__(__self__, batch_inputs=None, batch_results=None, cmac=None, context=None, hash_algorithm=None, hmac=None, id=None, input=None, mac_length=None, marshaling_algorithm=None, name=None, namespace=None, path=None, prehashed=None, reference=None, salt_length=None, signature=None, signature_algorithm=None, signature_context=None, valid=None):
|
31
31
|
if batch_inputs and not isinstance(batch_inputs, list):
|
32
32
|
raise TypeError("Expected argument 'batch_inputs' to be a list")
|
33
33
|
pulumi.set(__self__, "batch_inputs", batch_inputs)
|
@@ -52,6 +52,9 @@ class GetVerifyResult:
|
|
52
52
|
if input and not isinstance(input, str):
|
53
53
|
raise TypeError("Expected argument 'input' to be a str")
|
54
54
|
pulumi.set(__self__, "input", input)
|
55
|
+
if mac_length and not isinstance(mac_length, int):
|
56
|
+
raise TypeError("Expected argument 'mac_length' to be a int")
|
57
|
+
pulumi.set(__self__, "mac_length", mac_length)
|
55
58
|
if marshaling_algorithm and not isinstance(marshaling_algorithm, str):
|
56
59
|
raise TypeError("Expected argument 'marshaling_algorithm' to be a str")
|
57
60
|
pulumi.set(__self__, "marshaling_algorithm", marshaling_algorithm)
|
@@ -132,6 +135,11 @@ class GetVerifyResult:
|
|
132
135
|
def input(self) -> Optional[builtins.str]:
|
133
136
|
return pulumi.get(self, "input")
|
134
137
|
|
138
|
+
@property
|
139
|
+
@pulumi.getter(name="macLength")
|
140
|
+
def mac_length(self) -> Optional[builtins.int]:
|
141
|
+
return pulumi.get(self, "mac_length")
|
142
|
+
|
135
143
|
@property
|
136
144
|
@pulumi.getter(name="marshalingAlgorithm")
|
137
145
|
def marshaling_algorithm(self) -> Optional[builtins.str]:
|
@@ -205,6 +213,7 @@ class AwaitableGetVerifyResult(GetVerifyResult):
|
|
205
213
|
hmac=self.hmac,
|
206
214
|
id=self.id,
|
207
215
|
input=self.input,
|
216
|
+
mac_length=self.mac_length,
|
208
217
|
marshaling_algorithm=self.marshaling_algorithm,
|
209
218
|
name=self.name,
|
210
219
|
namespace=self.namespace,
|
@@ -225,6 +234,7 @@ def get_verify(batch_inputs: Optional[Sequence[Mapping[str, builtins.str]]] = No
|
|
225
234
|
hash_algorithm: Optional[builtins.str] = None,
|
226
235
|
hmac: Optional[builtins.str] = None,
|
227
236
|
input: Optional[builtins.str] = None,
|
237
|
+
mac_length: Optional[builtins.int] = None,
|
228
238
|
marshaling_algorithm: Optional[builtins.str] = None,
|
229
239
|
name: Optional[builtins.str] = None,
|
230
240
|
namespace: Optional[builtins.str] = None,
|
@@ -252,6 +262,7 @@ def get_verify(batch_inputs: Optional[Sequence[Mapping[str, builtins.str]]] = No
|
|
252
262
|
__args__['hashAlgorithm'] = hash_algorithm
|
253
263
|
__args__['hmac'] = hmac
|
254
264
|
__args__['input'] = input
|
265
|
+
__args__['macLength'] = mac_length
|
255
266
|
__args__['marshalingAlgorithm'] = marshaling_algorithm
|
256
267
|
__args__['name'] = name
|
257
268
|
__args__['namespace'] = namespace
|
@@ -275,6 +286,7 @@ def get_verify(batch_inputs: Optional[Sequence[Mapping[str, builtins.str]]] = No
|
|
275
286
|
hmac=pulumi.get(__ret__, 'hmac'),
|
276
287
|
id=pulumi.get(__ret__, 'id'),
|
277
288
|
input=pulumi.get(__ret__, 'input'),
|
289
|
+
mac_length=pulumi.get(__ret__, 'mac_length'),
|
278
290
|
marshaling_algorithm=pulumi.get(__ret__, 'marshaling_algorithm'),
|
279
291
|
name=pulumi.get(__ret__, 'name'),
|
280
292
|
namespace=pulumi.get(__ret__, 'namespace'),
|
@@ -293,6 +305,7 @@ def get_verify_output(batch_inputs: Optional[pulumi.Input[Optional[Sequence[Mapp
|
|
293
305
|
hash_algorithm: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
294
306
|
hmac: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
295
307
|
input: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
308
|
+
mac_length: Optional[pulumi.Input[Optional[builtins.int]]] = None,
|
296
309
|
marshaling_algorithm: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
297
310
|
name: Optional[pulumi.Input[builtins.str]] = None,
|
298
311
|
namespace: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
@@ -320,6 +333,7 @@ def get_verify_output(batch_inputs: Optional[pulumi.Input[Optional[Sequence[Mapp
|
|
320
333
|
__args__['hashAlgorithm'] = hash_algorithm
|
321
334
|
__args__['hmac'] = hmac
|
322
335
|
__args__['input'] = input
|
336
|
+
__args__['macLength'] = mac_length
|
323
337
|
__args__['marshalingAlgorithm'] = marshaling_algorithm
|
324
338
|
__args__['name'] = name
|
325
339
|
__args__['namespace'] = namespace
|
@@ -342,6 +356,7 @@ def get_verify_output(batch_inputs: Optional[pulumi.Input[Optional[Sequence[Mapp
|
|
342
356
|
hmac=pulumi.get(__response__, 'hmac'),
|
343
357
|
id=pulumi.get(__response__, 'id'),
|
344
358
|
input=pulumi.get(__response__, 'input'),
|
359
|
+
mac_length=pulumi.get(__response__, 'mac_length'),
|
345
360
|
marshaling_algorithm=pulumi.get(__response__, 'marshaling_algorithm'),
|
346
361
|
name=pulumi.get(__response__, 'name'),
|
347
362
|
namespace=pulumi.get(__response__, 'namespace'),
|
@@ -1,4 +1,4 @@
|
|
1
|
-
pulumi_vault/__init__.py,sha256=
|
1
|
+
pulumi_vault/__init__.py,sha256=Goo4260g6_UE99TiFNBwtPKtSSkM0qXlG13A2b_ooeg,32625
|
2
2
|
pulumi_vault/_inputs.py,sha256=dMqtMZQoofAvjjhDn8WnRkiEPYqXhcudXhdFNglP384,98872
|
3
3
|
pulumi_vault/_utilities.py,sha256=66uLGQDI1oMFOI3Fe5igAphtexWhcSLDyuVW50jW3ik,10789
|
4
4
|
pulumi_vault/audit.py,sha256=zTfPwj-dxashc2_WJiRkt0nmqpKJUPAeBV_4ugehak4,21317
|
@@ -26,13 +26,14 @@ pulumi_vault/plugin.py,sha256=wl7UgUnTfB9xPl-Iee8g5ReR3UvT2-yC_Bqu74Uxxgs,24836
|
|
26
26
|
pulumi_vault/plugin_pinned_version.py,sha256=vs6h8img2CawV-_hRLNAMtPLOy6TyyBVyVsmtj-R1Wo,11207
|
27
27
|
pulumi_vault/policy.py,sha256=TqnEYkckmNBOSkOgMF0QFTS2eewNQ9kNh2X3tFIpSSE,11533
|
28
28
|
pulumi_vault/provider.py,sha256=e4RULnU4J0vlFPScJWYv-PmZIP_6oiPQLb6AYuxDFBk,44462
|
29
|
-
pulumi_vault/pulumi-plugin.json,sha256=
|
29
|
+
pulumi_vault/pulumi-plugin.json,sha256=T46tPTBFb4esoQzSU0oR_46z9Le5IfpLkHwFYV1J2-o,81
|
30
30
|
pulumi_vault/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
31
31
|
pulumi_vault/quota_lease_count.py,sha256=JzC1ZI-a07028W0hw6LPkobgNSe2M19pPBVpX9-StbQ,25892
|
32
|
-
pulumi_vault/quota_rate_limit.py,sha256=
|
32
|
+
pulumi_vault/quota_rate_limit.py,sha256=CzNJd_QepIpjgnRY40fGf-e3xmjyTelzIyYo9pqMWvk,42636
|
33
33
|
pulumi_vault/raft_autopilot.py,sha256=VeZ0misf9yIcXpO1FCAsLD-fSz1gK4RGooMn8QhYrJM,31301
|
34
34
|
pulumi_vault/raft_snapshot_agent_config.py,sha256=iNvSfcA4c4TuLPHpRGv6TA_UiHGF-VmWNao-Vs4yRuU,78697
|
35
35
|
pulumi_vault/rgp_policy.py,sha256=9_Lo9Tsu7QPmPMRT6lxc1EVpmgaiKT270Z-aGc8peXA,15126
|
36
|
+
pulumi_vault/scep_auth_backend_role.py,sha256=jPD6TLPrHyc1rAef3iUNAGO9z1gFwAnD5LKDYIOLi1c,40111
|
36
37
|
pulumi_vault/token.py,sha256=7mqnVhibVlsIFFryWr4j7RCujSHAUJX4AKXuTCjezc4,45786
|
37
38
|
pulumi_vault/ad/__init__.py,sha256=RVIB3eYzGTcVl0mrSBPWsCbnJErnEkWsbqGyySQttQs,392
|
38
39
|
pulumi_vault/ad/get_access_credentials.py,sha256=bZAy95_1c_52MJPkcT_5enkdcpvjdReFRmxK4ShBhgw,7664
|
@@ -79,9 +80,9 @@ pulumi_vault/consul/__init__.py,sha256=zhq-CCogqo7Fr2-__lboX5FUmDlXUqwK7cQINzhLh
|
|
79
80
|
pulumi_vault/consul/secret_backend.py,sha256=97GHkK6curnqGlJgxrzBawVwLqaVMOyKOOP06vcveNw,41515
|
80
81
|
pulumi_vault/consul/secret_backend_role.py,sha256=c0bfvvhIhKqYVmjcNIjvmmYWTogykLcu9K5tiV9pi-s,43400
|
81
82
|
pulumi_vault/database/__init__.py,sha256=aoZ2W-UiiV4smvSf5q-uHk0UTUB6qOGYzfObA4-jnEo,459
|
82
|
-
pulumi_vault/database/_inputs.py,sha256=
|
83
|
-
pulumi_vault/database/outputs.py,sha256=
|
84
|
-
pulumi_vault/database/secret_backend_connection.py,sha256=
|
83
|
+
pulumi_vault/database/_inputs.py,sha256=JcbS1ARlm3ZKxy8zxYlRuGh15g1VP-5vBp6fQLdj1-w,513560
|
84
|
+
pulumi_vault/database/outputs.py,sha256=21bZv-Ycw1lkHunVM48gpeJmtH1KR7qV0F-rRXWTtFk,355141
|
85
|
+
pulumi_vault/database/secret_backend_connection.py,sha256=ozfseUgLQRiCgS-hmtSXzwyq1bw726gR12oRm7Q5YCo,92312
|
85
86
|
pulumi_vault/database/secret_backend_role.py,sha256=2KkrCXkAOs8BRfXz19ps9RNR0A0GZ7WU9-1ko6zD77w,38703
|
86
87
|
pulumi_vault/database/secret_backend_static_role.py,sha256=cryQSPRFcuMEeG9psR4zG5A3GPWM-MgTep62iFleo0w,44034
|
87
88
|
pulumi_vault/database/secrets_mount.py,sha256=no2NJI_xhW3jG7prTTFJIoEy-m4aYZcgphx9qG0MmKY,119397
|
@@ -184,22 +185,24 @@ pulumi_vault/okta/auth_backend.py,sha256=wCkAgdSOrkMI9tZDnjjRwiyaDaTVpYm_SF5Jvc2
|
|
184
185
|
pulumi_vault/okta/auth_backend_group.py,sha256=m4fFFDKb8O4wS0DL1sx9C9cqi3P9gM98hPyrLRrs4xc,15718
|
185
186
|
pulumi_vault/okta/auth_backend_user.py,sha256=wVYUyRNGtMUSkweKspTt_tEEaQxd4Io5f_i4IOm72dQ,17804
|
186
187
|
pulumi_vault/okta/outputs.py,sha256=7T-kEMcFHQ6fs7CIo2XOF8TyBGlILyDiD9DlCavsBUI,3374
|
187
|
-
pulumi_vault/pkisecret/__init__.py,sha256=
|
188
|
-
pulumi_vault/pkisecret/_inputs.py,sha256=
|
188
|
+
pulumi_vault/pkisecret/__init__.py,sha256=XQXQdCw4dXDoX6InTTbDhzrhLIrwZJ8RS4B_cfKQddU,1399
|
189
|
+
pulumi_vault/pkisecret/_inputs.py,sha256=GTj797VFkilH3lrElU65R-u2N-dr2ArzUgdEuDYjqUI,9932
|
189
190
|
pulumi_vault/pkisecret/backend_acme_eab.py,sha256=015Gm7-DKmaEHXzeC62dK3iMJV6_lzD9QCptecBfBDo,25141
|
190
191
|
pulumi_vault/pkisecret/backend_config_acme.py,sha256=4wnrn7SfsrTdoriV9oV5G3XYyctEokXMpbuueK0Vsts,33930
|
191
192
|
pulumi_vault/pkisecret/backend_config_auto_tidy.py,sha256=m4snTzZ6RndaSPGXjRLmfN2Di3IkVaGsFGTUIHtVvQg,75022
|
192
193
|
pulumi_vault/pkisecret/backend_config_cluster.py,sha256=XGPzkipUaS1Iw8sh2MSeIHNeubr9NX1GUUuAvSof2N8,16685
|
193
194
|
pulumi_vault/pkisecret/backend_config_cmpv2.py,sha256=8iOdkBzh3bXFyf-KAA62x9z5L9LGvHj2Ueken3TqFr8,29753
|
194
195
|
pulumi_vault/pkisecret/backend_config_est.py,sha256=bLvhxpwQW7tvurBUd-V2xqtF5-nACgpt6VHCC1ngfk8,34061
|
196
|
+
pulumi_vault/pkisecret/backend_config_scep.py,sha256=IiZqrMdLBBRdQGoj8BWdUeJCR9pCCqYcuE40Rl-3OxE,36419
|
195
197
|
pulumi_vault/pkisecret/get_backend_cert_metadata.py,sha256=PSEm0rnfrBry4A-JE0X73mdcuNgvnqK71QTkUhIjgBE,11112
|
196
198
|
pulumi_vault/pkisecret/get_backend_config_cmpv2.py,sha256=sNGGRtrhfDp9ek9xNgAbK-3g00G1NKJHyXjpnQpusVY,10299
|
197
199
|
pulumi_vault/pkisecret/get_backend_config_est.py,sha256=TshsiKyPTdt5ctPXakKJCvBX7wG05914ROT0_t8wggQ,11318
|
200
|
+
pulumi_vault/pkisecret/get_backend_config_scep.py,sha256=qcfyRDBV9YZL3yOgWPmWwyTCzgE0X8VHzHpLWyCP9_s,11629
|
198
201
|
pulumi_vault/pkisecret/get_backend_issuer.py,sha256=rJ8YXrDNBOmL_hUqFDYb7O49OPvr9Sa6ZW7XoldKlTM,19308
|
199
202
|
pulumi_vault/pkisecret/get_backend_issuers.py,sha256=9fiw45iDADlV5OuJS1_nTnlCRv3v_LzwbiZiTSMRebw,7394
|
200
203
|
pulumi_vault/pkisecret/get_backend_key.py,sha256=KyUn8H41I3Ltq5FNWMjMpx4LVXx1vMM8fpjntVqOHVM,8039
|
201
204
|
pulumi_vault/pkisecret/get_backend_keys.py,sha256=iFf28LONbxlE3mDA_oYkFfKUrJtUOeTdtCJimDWvzTs,7290
|
202
|
-
pulumi_vault/pkisecret/outputs.py,sha256=
|
205
|
+
pulumi_vault/pkisecret/outputs.py,sha256=S9qZXxQVYBhPGSV32JcaojI36YIwauGasEJjglbq6WE,9180
|
203
206
|
pulumi_vault/pkisecret/secret_backend_cert.py,sha256=zU5Onf6aVns5ELuSh3867hLOcoKgZiHfqvD2LnupTn4,62646
|
204
207
|
pulumi_vault/pkisecret/secret_backend_config_ca.py,sha256=SENUHbtXwhxNCIaSmGzHbFzamoFiBKZB5iVTWbqfupQ,19590
|
205
208
|
pulumi_vault/pkisecret/secret_backend_config_issuers.py,sha256=3XRA_2Oo9If40nq3VqRjeoupg_YdqwH4S8ixybpBxi0,17746
|
@@ -211,7 +214,7 @@ pulumi_vault/pkisecret/secret_backend_issuer.py,sha256=Cx1KQgBCaxsCB1r9Wevv3ETjK
|
|
211
214
|
pulumi_vault/pkisecret/secret_backend_key.py,sha256=iEqN0n1ZPqsCPP9Un6mKRZEyxa7reWAS65_MHeYElQo,26838
|
212
215
|
pulumi_vault/pkisecret/secret_backend_role.py,sha256=DtwdXCMmHJ_x4xMnKTHDBgmDTlAE-gQ7cpKlYkOoRo0,143014
|
213
216
|
pulumi_vault/pkisecret/secret_backend_root_cert.py,sha256=BiV5H9sjr2sxfksVQJcBhJFkB2wjp_CA7JWRiC7L1G8,100575
|
214
|
-
pulumi_vault/pkisecret/secret_backend_root_sign_intermediate.py,sha256=
|
217
|
+
pulumi_vault/pkisecret/secret_backend_root_sign_intermediate.py,sha256=miUx6n6IimLm9-n_zGjB63EHG8I_5-rMZJqkj2sXH6Y,100315
|
215
218
|
pulumi_vault/pkisecret/secret_backend_sign.py,sha256=39JtWwgvo4DVo0puj-CcSOI5PFAaHfLNlPVICq7p9AA,57606
|
216
219
|
pulumi_vault/rabbitmq/__init__.py,sha256=lU4aDBL8LCbZ5BqkzlpcIR4SjBRcHb9HPB-ihk-4L74,377
|
217
220
|
pulumi_vault/rabbitmq/_inputs.py,sha256=vnFpv2YnYh2dUrefzrJweOgzG68h57dTgvmxxIc1J9w,7426
|
@@ -251,14 +254,15 @@ pulumi_vault/transform/get_encode.py,sha256=mozl-bSJ-ch1BpU1Zc_OH9w_t8IVYANYwg7A
|
|
251
254
|
pulumi_vault/transform/role.py,sha256=O-0mS2rwEfKD3UpLaBV7wXom_RiaS7rTTmf9xCsvM5A,15136
|
252
255
|
pulumi_vault/transform/template.py,sha256=TpDjVr5dgsAG30KBiCBLojSIsiaBvULbLNqy2AO48IE,27017
|
253
256
|
pulumi_vault/transform/transformation.py,sha256=bZaaBq06jW_VCwaUF0gE_YpVfG7-9S9yCCHqVmCnW8k,28124
|
254
|
-
pulumi_vault/transit/__init__.py,sha256=
|
257
|
+
pulumi_vault/transit/__init__.py,sha256=ykMA0FH5Pg7nidL8eFII6E8gD6veZx6EKNswX403wBE,464
|
258
|
+
pulumi_vault/transit/get_cmac.py,sha256=_8GtQeIwaVn8IRigb75cWrnqb3rD4SqHpMvacskUa9Q,10362
|
255
259
|
pulumi_vault/transit/get_decrypt.py,sha256=9ds5OHFif3QD-sWx5vRbnUPIBd3ibNW-5xwQX2_jMdI,6776
|
256
260
|
pulumi_vault/transit/get_encrypt.py,sha256=7VfRvHLbr61Fo932h7pMas-uhUn2c6IIj_Fur-hc-Ig,6987
|
257
261
|
pulumi_vault/transit/get_sign.py,sha256=LzjCEOxnt7khS5djaJr_VpewMjhD2JJUFm9glIL7LFo,14894
|
258
|
-
pulumi_vault/transit/get_verify.py,sha256=
|
262
|
+
pulumi_vault/transit/get_verify.py,sha256=akWeyIK8x1pqrmnIQ0l6GF_9x4bP3R3SRxu0-jRV3Ig,16863
|
259
263
|
pulumi_vault/transit/secret_backend_key.py,sha256=5f2F-j9vj04vA6ipFlk6_MQbZEd637sYmCMrMC94iFY,64387
|
260
264
|
pulumi_vault/transit/secret_cache_config.py,sha256=-xxdfOyhFodNGCgMGGoaJ8W4KipauYhgl6Ir4ZeA6NM,13105
|
261
|
-
pulumi_vault-7.
|
262
|
-
pulumi_vault-7.
|
263
|
-
pulumi_vault-7.
|
264
|
-
pulumi_vault-7.
|
265
|
+
pulumi_vault-7.1.0a1752118888.dist-info/METADATA,sha256=mukXFPcFBRxd-Lt898P2ktCQE6XzKK75X6sSqLoqoMc,4926
|
266
|
+
pulumi_vault-7.1.0a1752118888.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
267
|
+
pulumi_vault-7.1.0a1752118888.dist-info/top_level.txt,sha256=J7lAGvfexHc6T1EpDBGNKF0SXWURpmUhyzi9Nr5I61w,13
|
268
|
+
pulumi_vault-7.1.0a1752118888.dist-info/RECORD,,
|
File without changes
|
{pulumi_vault-7.0.0a1750489873.dist-info → pulumi_vault-7.1.0a1752118888.dist-info}/top_level.txt
RENAMED
File without changes
|