pulumi-vault 6.4.0a1723454543__py3-none-any.whl → 6.4.0a1724220732__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/aws/auth_backend_login.py +7 -7
- pulumi_vault/config/ui_custom_message.py +14 -14
- pulumi_vault/database/_inputs.py +72 -72
- pulumi_vault/database/outputs.py +54 -54
- pulumi_vault/database/secret_backend_connection.py +14 -14
- pulumi_vault/database/secret_backend_role.py +14 -14
- pulumi_vault/database/secrets_mount.py +14 -14
- pulumi_vault/generic/get_secret.py +1 -1
- pulumi_vault/generic/secret.py +7 -7
- pulumi_vault/get_namespace.py +1 -1
- pulumi_vault/get_nomad_access_token.py +10 -4
- pulumi_vault/get_raft_autopilot_state.py +3 -3
- pulumi_vault/identity/get_entity.py +1 -1
- pulumi_vault/identity/get_group.py +2 -2
- pulumi_vault/identity/get_oidc_public_keys.py +1 -1
- pulumi_vault/identity/outputs.py +3 -3
- pulumi_vault/jwt/auth_backend_role.py +28 -28
- pulumi_vault/kubernetes/secret_backend.py +14 -14
- pulumi_vault/kv/_inputs.py +4 -4
- pulumi_vault/kv/get_secret.py +1 -1
- pulumi_vault/kv/get_secret_subkeys_v2.py +1 -1
- pulumi_vault/kv/get_secret_v2.py +2 -2
- pulumi_vault/kv/outputs.py +3 -3
- pulumi_vault/kv/secret.py +7 -7
- pulumi_vault/kv/secret_v2.py +28 -28
- pulumi_vault/ldap/secret_backend.py +14 -14
- pulumi_vault/mount.py +16 -16
- pulumi_vault/namespace.py +14 -14
- pulumi_vault/pkisecret/_inputs.py +8 -8
- pulumi_vault/pkisecret/backend_config_est.py +14 -14
- pulumi_vault/pkisecret/get_backend_config_est.py +1 -1
- pulumi_vault/pkisecret/get_backend_issuers.py +1 -1
- pulumi_vault/pkisecret/get_backend_keys.py +1 -1
- pulumi_vault/pkisecret/outputs.py +12 -12
- pulumi_vault/pulumi-plugin.json +1 -1
- pulumi_vault/saml/auth_backend_role.py +14 -14
- pulumi_vault/secrets/sync_aws_destination.py +14 -14
- pulumi_vault/secrets/sync_azure_destination.py +14 -14
- pulumi_vault/secrets/sync_gcp_destination.py +14 -14
- pulumi_vault/ssh/secret_backend_role.py +28 -28
- pulumi_vault/transform/get_decode.py +10 -10
- pulumi_vault/transform/get_encode.py +10 -10
- pulumi_vault/transform/template.py +14 -14
- pulumi_vault/transit/secret_backend_key.py +7 -7
- {pulumi_vault-6.4.0a1723454543.dist-info → pulumi_vault-6.4.0a1724220732.dist-info}/METADATA +1 -1
- {pulumi_vault-6.4.0a1723454543.dist-info → pulumi_vault-6.4.0a1724220732.dist-info}/RECORD +48 -48
- {pulumi_vault-6.4.0a1723454543.dist-info → pulumi_vault-6.4.0a1724220732.dist-info}/WHEEL +1 -1
- {pulumi_vault-6.4.0a1723454543.dist-info → pulumi_vault-6.4.0a1724220732.dist-info}/top_level.txt +0 -0
@@ -16,7 +16,7 @@ class TemplateArgs:
|
|
16
16
|
def __init__(__self__, *,
|
17
17
|
path: pulumi.Input[str],
|
18
18
|
alphabet: Optional[pulumi.Input[str]] = None,
|
19
|
-
decode_formats: Optional[pulumi.Input[Mapping[str,
|
19
|
+
decode_formats: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
20
20
|
encode_format: Optional[pulumi.Input[str]] = None,
|
21
21
|
name: Optional[pulumi.Input[str]] = None,
|
22
22
|
namespace: Optional[pulumi.Input[str]] = None,
|
@@ -26,7 +26,7 @@ class TemplateArgs:
|
|
26
26
|
The set of arguments for constructing a Template resource.
|
27
27
|
:param pulumi.Input[str] path: Path to where the back-end is mounted within Vault.
|
28
28
|
:param pulumi.Input[str] alphabet: The alphabet to use for this template. This is only used during FPE transformations.
|
29
|
-
:param pulumi.Input[Mapping[str,
|
29
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] decode_formats: Optional mapping of name to regular expression template, used to customize
|
30
30
|
the decoded output. (requires Vault Enterprise 1.9+)
|
31
31
|
:param pulumi.Input[str] encode_format: The regular expression template used to format encoded values.
|
32
32
|
(requires Vault Enterprise 1.9+)
|
@@ -80,7 +80,7 @@ class TemplateArgs:
|
|
80
80
|
|
81
81
|
@property
|
82
82
|
@pulumi.getter(name="decodeFormats")
|
83
|
-
def decode_formats(self) -> Optional[pulumi.Input[Mapping[str,
|
83
|
+
def decode_formats(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
84
84
|
"""
|
85
85
|
Optional mapping of name to regular expression template, used to customize
|
86
86
|
the decoded output. (requires Vault Enterprise 1.9+)
|
@@ -88,7 +88,7 @@ class TemplateArgs:
|
|
88
88
|
return pulumi.get(self, "decode_formats")
|
89
89
|
|
90
90
|
@decode_formats.setter
|
91
|
-
def decode_formats(self, value: Optional[pulumi.Input[Mapping[str,
|
91
|
+
def decode_formats(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
92
92
|
pulumi.set(self, "decode_formats", value)
|
93
93
|
|
94
94
|
@property
|
@@ -160,7 +160,7 @@ class TemplateArgs:
|
|
160
160
|
class _TemplateState:
|
161
161
|
def __init__(__self__, *,
|
162
162
|
alphabet: Optional[pulumi.Input[str]] = None,
|
163
|
-
decode_formats: Optional[pulumi.Input[Mapping[str,
|
163
|
+
decode_formats: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
164
164
|
encode_format: Optional[pulumi.Input[str]] = None,
|
165
165
|
name: Optional[pulumi.Input[str]] = None,
|
166
166
|
namespace: Optional[pulumi.Input[str]] = None,
|
@@ -170,7 +170,7 @@ class _TemplateState:
|
|
170
170
|
"""
|
171
171
|
Input properties used for looking up and filtering Template resources.
|
172
172
|
:param pulumi.Input[str] alphabet: The alphabet to use for this template. This is only used during FPE transformations.
|
173
|
-
:param pulumi.Input[Mapping[str,
|
173
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] decode_formats: Optional mapping of name to regular expression template, used to customize
|
174
174
|
the decoded output. (requires Vault Enterprise 1.9+)
|
175
175
|
:param pulumi.Input[str] encode_format: The regular expression template used to format encoded values.
|
176
176
|
(requires Vault Enterprise 1.9+)
|
@@ -214,7 +214,7 @@ class _TemplateState:
|
|
214
214
|
|
215
215
|
@property
|
216
216
|
@pulumi.getter(name="decodeFormats")
|
217
|
-
def decode_formats(self) -> Optional[pulumi.Input[Mapping[str,
|
217
|
+
def decode_formats(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
218
218
|
"""
|
219
219
|
Optional mapping of name to regular expression template, used to customize
|
220
220
|
the decoded output. (requires Vault Enterprise 1.9+)
|
@@ -222,7 +222,7 @@ class _TemplateState:
|
|
222
222
|
return pulumi.get(self, "decode_formats")
|
223
223
|
|
224
224
|
@decode_formats.setter
|
225
|
-
def decode_formats(self, value: Optional[pulumi.Input[Mapping[str,
|
225
|
+
def decode_formats(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
226
226
|
pulumi.set(self, "decode_formats", value)
|
227
227
|
|
228
228
|
@property
|
@@ -308,7 +308,7 @@ class Template(pulumi.CustomResource):
|
|
308
308
|
resource_name: str,
|
309
309
|
opts: Optional[pulumi.ResourceOptions] = None,
|
310
310
|
alphabet: Optional[pulumi.Input[str]] = None,
|
311
|
-
decode_formats: Optional[pulumi.Input[Mapping[str,
|
311
|
+
decode_formats: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
312
312
|
encode_format: Optional[pulumi.Input[str]] = None,
|
313
313
|
name: Optional[pulumi.Input[str]] = None,
|
314
314
|
namespace: Optional[pulumi.Input[str]] = None,
|
@@ -360,7 +360,7 @@ class Template(pulumi.CustomResource):
|
|
360
360
|
:param str resource_name: The name of the resource.
|
361
361
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
362
362
|
:param pulumi.Input[str] alphabet: The alphabet to use for this template. This is only used during FPE transformations.
|
363
|
-
:param pulumi.Input[Mapping[str,
|
363
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] decode_formats: Optional mapping of name to regular expression template, used to customize
|
364
364
|
the decoded output. (requires Vault Enterprise 1.9+)
|
365
365
|
:param pulumi.Input[str] encode_format: The regular expression template used to format encoded values.
|
366
366
|
(requires Vault Enterprise 1.9+)
|
@@ -436,7 +436,7 @@ class Template(pulumi.CustomResource):
|
|
436
436
|
resource_name: str,
|
437
437
|
opts: Optional[pulumi.ResourceOptions] = None,
|
438
438
|
alphabet: Optional[pulumi.Input[str]] = None,
|
439
|
-
decode_formats: Optional[pulumi.Input[Mapping[str,
|
439
|
+
decode_formats: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
440
440
|
encode_format: Optional[pulumi.Input[str]] = None,
|
441
441
|
name: Optional[pulumi.Input[str]] = None,
|
442
442
|
namespace: Optional[pulumi.Input[str]] = None,
|
@@ -473,7 +473,7 @@ class Template(pulumi.CustomResource):
|
|
473
473
|
id: pulumi.Input[str],
|
474
474
|
opts: Optional[pulumi.ResourceOptions] = None,
|
475
475
|
alphabet: Optional[pulumi.Input[str]] = None,
|
476
|
-
decode_formats: Optional[pulumi.Input[Mapping[str,
|
476
|
+
decode_formats: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
477
477
|
encode_format: Optional[pulumi.Input[str]] = None,
|
478
478
|
name: Optional[pulumi.Input[str]] = None,
|
479
479
|
namespace: Optional[pulumi.Input[str]] = None,
|
@@ -488,7 +488,7 @@ class Template(pulumi.CustomResource):
|
|
488
488
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
489
489
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
490
490
|
:param pulumi.Input[str] alphabet: The alphabet to use for this template. This is only used during FPE transformations.
|
491
|
-
:param pulumi.Input[Mapping[str,
|
491
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] decode_formats: Optional mapping of name to regular expression template, used to customize
|
492
492
|
the decoded output. (requires Vault Enterprise 1.9+)
|
493
493
|
:param pulumi.Input[str] encode_format: The regular expression template used to format encoded values.
|
494
494
|
(requires Vault Enterprise 1.9+)
|
@@ -525,7 +525,7 @@ class Template(pulumi.CustomResource):
|
|
525
525
|
|
526
526
|
@property
|
527
527
|
@pulumi.getter(name="decodeFormats")
|
528
|
-
def decode_formats(self) -> pulumi.Output[Optional[Mapping[str,
|
528
|
+
def decode_formats(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
|
529
529
|
"""
|
530
530
|
Optional mapping of name to regular expression template, used to customize
|
531
531
|
the decoded output. (requires Vault Enterprise 1.9+)
|
@@ -249,7 +249,7 @@ class _SecretBackendKeyState:
|
|
249
249
|
derived: Optional[pulumi.Input[bool]] = None,
|
250
250
|
exportable: Optional[pulumi.Input[bool]] = None,
|
251
251
|
key_size: Optional[pulumi.Input[int]] = None,
|
252
|
-
keys: Optional[pulumi.Input[Sequence[pulumi.Input[Mapping[str,
|
252
|
+
keys: Optional[pulumi.Input[Sequence[pulumi.Input[Mapping[str, pulumi.Input[str]]]]]] = None,
|
253
253
|
latest_version: Optional[pulumi.Input[int]] = None,
|
254
254
|
min_available_version: Optional[pulumi.Input[int]] = None,
|
255
255
|
min_decryption_version: Optional[pulumi.Input[int]] = None,
|
@@ -273,7 +273,7 @@ class _SecretBackendKeyState:
|
|
273
273
|
:param pulumi.Input[bool] derived: Specifies if key derivation is to be used. If enabled, all encrypt/decrypt requests to this key must provide a context which is used for key derivation.
|
274
274
|
:param pulumi.Input[bool] exportable: Enables keys to be exportable. This allows for all valid private keys in the keyring to be exported. Once set, this cannot be disabled.
|
275
275
|
:param pulumi.Input[int] key_size: The key size in bytes for algorithms that allow variable key sizes. Currently only applicable to HMAC, where it must be between 32 and 512 bytes.
|
276
|
-
:param pulumi.Input[Sequence[pulumi.Input[Mapping[str,
|
276
|
+
:param pulumi.Input[Sequence[pulumi.Input[Mapping[str, pulumi.Input[str]]]]] keys: List of key versions in the keyring. This attribute is zero-indexed and will contain a map of values depending on the `type` of the encryption key.
|
277
277
|
* for key types `aes128-gcm96`, `aes256-gcm96` and `chacha20-poly1305`, each key version will be a map of a single value `id` which is just a hash of the key's metadata.
|
278
278
|
* for key types `ed25519`, `ecdsa-p256`, `ecdsa-p384`, `ecdsa-p521`, `rsa-2048`, `rsa-3072` and `rsa-4096`, each key version will be a map of the following:
|
279
279
|
:param pulumi.Input[int] latest_version: Latest key version available. This value is 1-indexed, so if `latest_version` is `1`, then the key's information can be referenced from `keys` by selecting element `0`
|
@@ -433,7 +433,7 @@ class _SecretBackendKeyState:
|
|
433
433
|
|
434
434
|
@property
|
435
435
|
@pulumi.getter
|
436
|
-
def keys(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[Mapping[str,
|
436
|
+
def keys(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[Mapping[str, pulumi.Input[str]]]]]]:
|
437
437
|
"""
|
438
438
|
List of key versions in the keyring. This attribute is zero-indexed and will contain a map of values depending on the `type` of the encryption key.
|
439
439
|
* for key types `aes128-gcm96`, `aes256-gcm96` and `chacha20-poly1305`, each key version will be a map of a single value `id` which is just a hash of the key's metadata.
|
@@ -442,7 +442,7 @@ class _SecretBackendKeyState:
|
|
442
442
|
return pulumi.get(self, "keys")
|
443
443
|
|
444
444
|
@keys.setter
|
445
|
-
def keys(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[Mapping[str,
|
445
|
+
def keys(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[Mapping[str, pulumi.Input[str]]]]]]):
|
446
446
|
pulumi.set(self, "keys", value)
|
447
447
|
|
448
448
|
@property
|
@@ -762,7 +762,7 @@ class SecretBackendKey(pulumi.CustomResource):
|
|
762
762
|
derived: Optional[pulumi.Input[bool]] = None,
|
763
763
|
exportable: Optional[pulumi.Input[bool]] = None,
|
764
764
|
key_size: Optional[pulumi.Input[int]] = None,
|
765
|
-
keys: Optional[pulumi.Input[Sequence[pulumi.Input[Mapping[str,
|
765
|
+
keys: Optional[pulumi.Input[Sequence[pulumi.Input[Mapping[str, pulumi.Input[str]]]]]] = None,
|
766
766
|
latest_version: Optional[pulumi.Input[int]] = None,
|
767
767
|
min_available_version: Optional[pulumi.Input[int]] = None,
|
768
768
|
min_decryption_version: Optional[pulumi.Input[int]] = None,
|
@@ -791,7 +791,7 @@ class SecretBackendKey(pulumi.CustomResource):
|
|
791
791
|
:param pulumi.Input[bool] derived: Specifies if key derivation is to be used. If enabled, all encrypt/decrypt requests to this key must provide a context which is used for key derivation.
|
792
792
|
:param pulumi.Input[bool] exportable: Enables keys to be exportable. This allows for all valid private keys in the keyring to be exported. Once set, this cannot be disabled.
|
793
793
|
:param pulumi.Input[int] key_size: The key size in bytes for algorithms that allow variable key sizes. Currently only applicable to HMAC, where it must be between 32 and 512 bytes.
|
794
|
-
:param pulumi.Input[Sequence[pulumi.Input[Mapping[str,
|
794
|
+
:param pulumi.Input[Sequence[pulumi.Input[Mapping[str, pulumi.Input[str]]]]] keys: List of key versions in the keyring. This attribute is zero-indexed and will contain a map of values depending on the `type` of the encryption key.
|
795
795
|
* for key types `aes128-gcm96`, `aes256-gcm96` and `chacha20-poly1305`, each key version will be a map of a single value `id` which is just a hash of the key's metadata.
|
796
796
|
* for key types `ed25519`, `ecdsa-p256`, `ecdsa-p384`, `ecdsa-p521`, `rsa-2048`, `rsa-3072` and `rsa-4096`, each key version will be a map of the following:
|
797
797
|
:param pulumi.Input[int] latest_version: Latest key version available. This value is 1-indexed, so if `latest_version` is `1`, then the key's information can be referenced from `keys` by selecting element `0`
|
@@ -904,7 +904,7 @@ class SecretBackendKey(pulumi.CustomResource):
|
|
904
904
|
|
905
905
|
@property
|
906
906
|
@pulumi.getter
|
907
|
-
def keys(self) -> pulumi.Output[Sequence[Mapping[str,
|
907
|
+
def keys(self) -> pulumi.Output[Sequence[Mapping[str, str]]]:
|
908
908
|
"""
|
909
909
|
List of key versions in the keyring. This attribute is zero-indexed and will contain a map of values depending on the `type` of the encryption key.
|
910
910
|
* for key types `aes128-gcm96`, `aes256-gcm96` and `chacha20-poly1305`, each key version will be a map of a single value `id` which is just a hash of the key's metadata.
|
@@ -8,17 +8,17 @@ pulumi_vault/cert_auth_backend_role.py,sha256=u439tS_eIgQIK_GbOD-f7kNlcIIq1Vcd6z
|
|
8
8
|
pulumi_vault/egp_policy.py,sha256=dkMcmp_7CJBSOCBE1BK8cNpZIe6BxGtVHFUty-6OV9A,16599
|
9
9
|
pulumi_vault/get_auth_backend.py,sha256=ux17Tq0ReoiBHgdsthi1SIhNJT88t8inL_fQCG5yc1U,7757
|
10
10
|
pulumi_vault/get_auth_backends.py,sha256=72bXlGvlkV9a7jZzG8l48J3G0chHgbXMYqJinyYNEa8,5307
|
11
|
-
pulumi_vault/get_namespace.py,sha256=
|
11
|
+
pulumi_vault/get_namespace.py,sha256=8TGR_1C4RCOBv4Bjff_Hn6dlqLaqyxn6_H5faMWBHfY,7075
|
12
12
|
pulumi_vault/get_namespaces.py,sha256=fkB4WKruaPMzAt3jyVUeeP2iFArgru0RvjiEuqT_LJA,4400
|
13
|
-
pulumi_vault/get_nomad_access_token.py,sha256=
|
13
|
+
pulumi_vault/get_nomad_access_token.py,sha256=_qQrazfQ1oPr9YnELLyih1iZUaoNc7mHfINrdfUI4BY,7405
|
14
14
|
pulumi_vault/get_policy_document.py,sha256=iYU-C8Mcx68e9IIlPnUthdrdOaklm1IIkDYmKSZ14hU,4998
|
15
|
-
pulumi_vault/get_raft_autopilot_state.py,sha256=
|
15
|
+
pulumi_vault/get_raft_autopilot_state.py,sha256=tg7JfL-u5st6GBa9KVYWNxseEZRT9vg2IJkS0m6w0uo,9867
|
16
16
|
pulumi_vault/mfa_duo.py,sha256=LJzOnwcNhzbgogrW4cyvadUFnB7wasK-QQ4MbPU0eS4,28237
|
17
17
|
pulumi_vault/mfa_okta.py,sha256=pA6n9k3BBMHXLvvyjOoSxTirgAznz5M0bWeXjHq8riU,29503
|
18
18
|
pulumi_vault/mfa_pingid.py,sha256=h4W3TOvcUQK1gzwqiC6samirfBghCTIcBgd3KpyBGww,30972
|
19
19
|
pulumi_vault/mfa_totp.py,sha256=J-c-GoVmO6FED6UDff2AtZJh5R8XlbnYY7CDeuPopI0,25344
|
20
|
-
pulumi_vault/mount.py,sha256=
|
21
|
-
pulumi_vault/namespace.py,sha256=
|
20
|
+
pulumi_vault/mount.py,sha256=LG1lR80cQFq-_iKaD7soFC4l_wzFs2W1sPK8dFrGH-s,60035
|
21
|
+
pulumi_vault/namespace.py,sha256=GmpQurCSwMhhwQ-vb3M6jyzMYvltU_SgKKITBs8mEbk,18259
|
22
22
|
pulumi_vault/nomad_secret_backend.py,sha256=cmL2NkjNIZxu9a7NEMMHgojGi12I2tGDojFdMGSgj04,42018
|
23
23
|
pulumi_vault/nomad_secret_role.py,sha256=47QltNPaM58oiCXt77Z6r1cXRVN79FhYWI7Iei5sQ3w,20146
|
24
24
|
pulumi_vault/outputs.py,sha256=88VJ3ypd_FjGNbSs30B5o6hAiAvWU2bx4SoCfTBGyIc,13760
|
@@ -27,7 +27,7 @@ pulumi_vault/plugin.py,sha256=0fBhSZDyQhzML9r1Udhy9ngHcfjwzi1BzvutsbKKUwU,23482
|
|
27
27
|
pulumi_vault/plugin_pinned_version.py,sha256=mo62qPp_IwJRnv5t2p9ywInEjwHFsBunoyCDGc0bveg,10583
|
28
28
|
pulumi_vault/policy.py,sha256=V6knAiqkzH97T72s6FB2qNjScDfKOAl3mox1h7vg0Ps,10935
|
29
29
|
pulumi_vault/provider.py,sha256=4gW_RRIaXwvNdhrR8A8qmeUXKN0DRVsFxEZVBIfYJ3s,42626
|
30
|
-
pulumi_vault/pulumi-plugin.json,sha256=
|
30
|
+
pulumi_vault/pulumi-plugin.json,sha256=lv-eEcRIOYsVrn9y6hrDodL9E6FVZJ06pEH08BwV_JQ,81
|
31
31
|
pulumi_vault/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
32
32
|
pulumi_vault/quota_lease_count.py,sha256=w5CLQQjCk9PKSzX_XeLMEV87xre-poHJG9NfAGVVTjw,24898
|
33
33
|
pulumi_vault/quota_rate_limit.py,sha256=hA0tDU-54VrfcTHCzbRU-TL32BLnPBxhl92faufEkZo,29503
|
@@ -52,7 +52,7 @@ pulumi_vault/aws/auth_backend_cert.py,sha256=N6ptGXlQ9eMEiXlqisjTPGwEtYaZZigzUfX
|
|
52
52
|
pulumi_vault/aws/auth_backend_client.py,sha256=A2ofHZ9tIMyZ0Ms3ibhAq8OoujdQ6Olxts462ZGYUoU,44846
|
53
53
|
pulumi_vault/aws/auth_backend_config_identity.py,sha256=Oov2g84mh1NGuSlsg-OIQUxHzLpo1xxSg6ur_bIEVwA,23132
|
54
54
|
pulumi_vault/aws/auth_backend_identity_whitelist.py,sha256=l4WIvov1_SuKA5Bo3iEyCLAazEK2YDk5tQPDTU767JE,16940
|
55
|
-
pulumi_vault/aws/auth_backend_login.py,sha256=
|
55
|
+
pulumi_vault/aws/auth_backend_login.py,sha256=iRvQHoga7vP4WFnhWOy9VR0xhu-8NCj6RG795waGjKA,42593
|
56
56
|
pulumi_vault/aws/auth_backend_role.py,sha256=GLIHP4letByZVtEAp3HUOZFYg4nQIIdSpPJT_WWc4oU,100480
|
57
57
|
pulumi_vault/aws/auth_backend_role_tag.py,sha256=FDv2ebCCOMkLMMPlS04kSqzHFcIRZ1xF4ahTQJFByjY,26592
|
58
58
|
pulumi_vault/aws/auth_backend_roletag_blacklist.py,sha256=wl0butmfzT-5citKcAHVhKT_srrtf34rG1ZtOvUWFgY,16510
|
@@ -74,18 +74,18 @@ pulumi_vault/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi0
|
|
74
74
|
pulumi_vault/config/__init__.pyi,sha256=YGvo2tTxE0RZc8SWNT2bfG6GRSmPvAIrqac0PlIHkRA,3140
|
75
75
|
pulumi_vault/config/_inputs.py,sha256=Ps-1D8eCmFCCrX_mrsm53ZNGSpK5MDk3ILlZvghXJ8E,1361
|
76
76
|
pulumi_vault/config/outputs.py,sha256=4ljxvhFVCtsPEfsRpHZ2GT3QzyjRSg5aTmnw1xshQeI,42626
|
77
|
-
pulumi_vault/config/ui_custom_message.py,sha256=
|
77
|
+
pulumi_vault/config/ui_custom_message.py,sha256=Q7NI3KWqA_t-sUTq6DOCOIfDouIvYGMq8T6G4AOH_Po,22764
|
78
78
|
pulumi_vault/config/vars.py,sha256=LdcRT-Ge4uuw6IN6IrFOxXEbB3RsaTDSTTycD27q7Z0,6525
|
79
79
|
pulumi_vault/consul/__init__.py,sha256=MYNOUNqNi49Gsivdn3pOzEa_z-y9NF69sasXX1K0YW8,334
|
80
80
|
pulumi_vault/consul/secret_backend.py,sha256=8orQH-6ccJGRZZoXM71yaiD0L4rV7wkW8h6rcssTJzM,39516
|
81
81
|
pulumi_vault/consul/secret_backend_role.py,sha256=1-Oiwxl6d7mZSRl5OKX1cpYZSPIu3mHZ9dUf0IZMaI4,41519
|
82
82
|
pulumi_vault/database/__init__.py,sha256=tYq_SkLBBJ3LzcjTNj5KSt92p2t595IcZ_5Qbe-Gz2g,461
|
83
|
-
pulumi_vault/database/_inputs.py,sha256=
|
84
|
-
pulumi_vault/database/outputs.py,sha256=
|
85
|
-
pulumi_vault/database/secret_backend_connection.py,sha256=
|
86
|
-
pulumi_vault/database/secret_backend_role.py,sha256=
|
83
|
+
pulumi_vault/database/_inputs.py,sha256=6TTkX9oTSBLx7QL86VWc4RbM3XUKSStK22zApNm5yNQ,291770
|
84
|
+
pulumi_vault/database/outputs.py,sha256=SM1MDcuDECy7z7J34LKrK0Ahq9yRmpCk-cW5QwxL-eE,253519
|
85
|
+
pulumi_vault/database/secret_backend_connection.py,sha256=FgiGbchw7wyEx_3WREUBK2jY-GWwvIdwAUWyM1lvCDs,76205
|
86
|
+
pulumi_vault/database/secret_backend_role.py,sha256=_vfy83_7m4NpXmqA4WaU-iLP56vtPn7m7y9n1eKAB_U,36946
|
87
87
|
pulumi_vault/database/secret_backend_static_role.py,sha256=n0LfE_4CsXzeY9m2nDNFgCPIcI222EMwPA9rvzMwu7s,30683
|
88
|
-
pulumi_vault/database/secrets_mount.py,sha256=
|
88
|
+
pulumi_vault/database/secrets_mount.py,sha256=PZ2dCAd7hLpfxi4SEx_k_t1mwg47MJLQBLTLx669CrM,115776
|
89
89
|
pulumi_vault/gcp/__init__.py,sha256=C0xixHwpaTovKTJEMFd1P6NitNgdlYCfCFY4aPbbI68,552
|
90
90
|
pulumi_vault/gcp/_inputs.py,sha256=Xe5X3dDX0fWR2FNo5SYApMrvR2szsuuEL4Gpiao9nP8,14698
|
91
91
|
pulumi_vault/gcp/auth_backend.py,sha256=ntOZ_P8SJ4F2Y0uAAbY5EZfXDkUSWLX4tzgPwx7B1j0,51297
|
@@ -98,8 +98,8 @@ pulumi_vault/gcp/secret_roleset.py,sha256=Eil8gGurO2ICYN33Pyf0RD7q-ICG09ZDZMPTCW
|
|
98
98
|
pulumi_vault/gcp/secret_static_account.py,sha256=hYGYQVQfPX0TLKcjms92xiTDMzfHpf4dOnArG4NaBxY,27338
|
99
99
|
pulumi_vault/generic/__init__.py,sha256=sKMQ22SKTgwwj91ZVDPGiwt7EuLghz3p3bdX6oiTwZ0,341
|
100
100
|
pulumi_vault/generic/endpoint.py,sha256=JdeSmTe79jG7cTOlL8z2PwnddPlnh0MNqMexeNxihE4,39081
|
101
|
-
pulumi_vault/generic/get_secret.py,sha256=
|
102
|
-
pulumi_vault/generic/secret.py,sha256=
|
101
|
+
pulumi_vault/generic/get_secret.py,sha256=tX1lhrGh66bU8EZDsAr_kd3v0q2hHFe1p0L_GK0U2cM,11244
|
102
|
+
pulumi_vault/generic/secret.py,sha256=KiDktbGm0ObObSDc3994ceANYInVuaogX2d3MXeIfH0,22931
|
103
103
|
pulumi_vault/github/__init__.py,sha256=ZYCQvKsnIeVKx_BIqkC8IqGBS4TjXNeo8iZxHbmztGk,382
|
104
104
|
pulumi_vault/github/_inputs.py,sha256=IWTJA4vCsWY0qINVvYyi9rYDfmAkJNxFquvsR7Fg2q4,8032
|
105
105
|
pulumi_vault/github/auth_backend.py,sha256=LfLQ4yP0nbfeTkm3iHMchf2RLz9SgB1RVzgXiTvD7gA,56495
|
@@ -110,11 +110,11 @@ pulumi_vault/identity/__init__.py,sha256=0lwEIF5yG_HPzGj-VTGpnAPyd5zqwoLC0ltNaWW
|
|
110
110
|
pulumi_vault/identity/entity.py,sha256=n0urur32RKQ4eEzU8TzkrsEr_iVU7CnjJu-GT2-igEU,19832
|
111
111
|
pulumi_vault/identity/entity_alias.py,sha256=F6u_zADIe7DFrPem3FB11kU618b6VqMbJCEDqQ8Vqn0,18539
|
112
112
|
pulumi_vault/identity/entity_policies.py,sha256=IVW9T5hHFcToSmM9DX0tYTZ7m5kMC-LF8hmsGVUSZkA,19927
|
113
|
-
pulumi_vault/identity/get_entity.py,sha256=
|
114
|
-
pulumi_vault/identity/get_group.py,sha256=
|
113
|
+
pulumi_vault/identity/get_entity.py,sha256=5_PMf-OGa3GRe50Qhe9AiL8iLMEa0J7NvjpR93bsy5s,14351
|
114
|
+
pulumi_vault/identity/get_group.py,sha256=wB1Htbwxhi1fcekHqEnL-0FGgF5IAnUaYm3_MQiLiwI,17956
|
115
115
|
pulumi_vault/identity/get_oidc_client_creds.py,sha256=y8S0VLA_bVhqxmLHsMlBZrcRHBpjrTphPgVpU4FPgM0,5927
|
116
116
|
pulumi_vault/identity/get_oidc_openid_config.py,sha256=B75fMH2x5QFtDUKO0hheszmMrM9EvRQ3JszpCWPiI7k,13482
|
117
|
-
pulumi_vault/identity/get_oidc_public_keys.py,sha256=
|
117
|
+
pulumi_vault/identity/get_oidc_public_keys.py,sha256=i2Zc7S70H9eTIymExZYRiCcbZg6ngaDE_r0ZPh2864g,5960
|
118
118
|
pulumi_vault/identity/group.py,sha256=nUCfc8gjjdiq2-OVkFwZsbjBY6axNpb35rc8ZUBPJP4,37454
|
119
119
|
pulumi_vault/identity/group_alias.py,sha256=iQfKYXC0IIUoaD00ECX60jeN5LZoqifvAeM21oAr0-U,17298
|
120
120
|
pulumi_vault/identity/group_member_entity_ids.py,sha256=FoHEn4H9AcK_q9hwXb-f_HNaHYxX6wQMd4OED0znpDg,20482
|
@@ -133,11 +133,11 @@ pulumi_vault/identity/oidc_key_allowed_client_id.py,sha256=F-u5EbCpVbFaxyZOhoqS1
|
|
133
133
|
pulumi_vault/identity/oidc_provider.py,sha256=vS2Xnuqb19RkFq-7MMHrMuHkJohaaTM8uVFTmzaw3yQ,24342
|
134
134
|
pulumi_vault/identity/oidc_role.py,sha256=AqhSA2sU0DAqiJOzNpfLawqlPcFqokeO1SZgPRWHe6U,21920
|
135
135
|
pulumi_vault/identity/oidc_scope.py,sha256=OhSCfmNqUFZoDLAFWgWyNHQ_YMtXORGvGNnNA9CIywU,14599
|
136
|
-
pulumi_vault/identity/outputs.py,sha256=
|
136
|
+
pulumi_vault/identity/outputs.py,sha256=T_BZLj5aqRuSnsERADbk2pPux8f5ynO5pwCLlbi8dg0,4154
|
137
137
|
pulumi_vault/jwt/__init__.py,sha256=VSAnoMgVIUlS_5ofpyuo8lZkK_ZWPIaQit88yJUulpc,375
|
138
138
|
pulumi_vault/jwt/_inputs.py,sha256=IWTJA4vCsWY0qINVvYyi9rYDfmAkJNxFquvsR7Fg2q4,8032
|
139
139
|
pulumi_vault/jwt/auth_backend.py,sha256=nzHo_TXhxh_2_oKOCPo0nnCK6vKv1ED6CWv4c7jmvZg,66048
|
140
|
-
pulumi_vault/jwt/auth_backend_role.py,sha256=
|
140
|
+
pulumi_vault/jwt/auth_backend_role.py,sha256=_cAesp8xunXV1LQZTS5jOYEyHya5NqSCt43RicZNb8Y,87084
|
141
141
|
pulumi_vault/jwt/outputs.py,sha256=5CzU14sb4gtLnqhXZfESAEQEcVKdiDOxYIbH33ovJOk,7320
|
142
142
|
pulumi_vault/kmip/__init__.py,sha256=iT5_oJBCN1Mr7rwkKXtb4ab_w8GFXCr9RcXaTCFPcEk,354
|
143
143
|
pulumi_vault/kmip/secret_backend.py,sha256=ycFCBQmT54SjkaJUvfOQVxaLcbQ1epD5eYN0XIM4LNs,37775
|
@@ -149,26 +149,26 @@ pulumi_vault/kubernetes/auth_backend_role.py,sha256=vdXjAPPvVDgX6Yy2q0lGqA4La_2z
|
|
149
149
|
pulumi_vault/kubernetes/get_auth_backend_config.py,sha256=-B9KKJOJD4Zl9ztTOt5uQ0dhFRuOtZKlEamkZOta0zs,10609
|
150
150
|
pulumi_vault/kubernetes/get_auth_backend_role.py,sha256=Zv58F4W8UPq3xNr7WbldlEQOndvYG-geGaW1VAp8W9o,21357
|
151
151
|
pulumi_vault/kubernetes/get_service_account_token.py,sha256=NL7c01y9ZnC-eENg99ZLIRzdpmxqFUGG92HWWa8Y_fU,13805
|
152
|
-
pulumi_vault/kubernetes/secret_backend.py,sha256=
|
152
|
+
pulumi_vault/kubernetes/secret_backend.py,sha256=XkYOIgxOvOv0j2bcz6C006sDTrcCmyr2KNpVFVO0Amc,66576
|
153
153
|
pulumi_vault/kubernetes/secret_backend_role.py,sha256=NSeLuQz9Li4Yy73HdSd5os3qElk3aPoYtaayDCE9Wug,55709
|
154
154
|
pulumi_vault/kv/__init__.py,sha256=dF29_Z4F3d4CnpcCvjG4CWZx6VkI272d4zFV9fgX_xY,553
|
155
|
-
pulumi_vault/kv/_inputs.py,sha256=
|
156
|
-
pulumi_vault/kv/get_secret.py,sha256=
|
157
|
-
pulumi_vault/kv/get_secret_subkeys_v2.py,sha256=
|
158
|
-
pulumi_vault/kv/get_secret_v2.py,sha256=
|
155
|
+
pulumi_vault/kv/_inputs.py,sha256=QD4sbLYfrHoRE2389J0VODZmZtmaW0qCosfZyeDzeIk,3684
|
156
|
+
pulumi_vault/kv/get_secret.py,sha256=5NaICSiOjoH6wPDXWPo_Rck08egpB6pNP0ANYXh2PCM,7822
|
157
|
+
pulumi_vault/kv/get_secret_subkeys_v2.py,sha256=zBGnm37DHyqHCkqEoIsLSjTYwTVPehfi-5IHvDEAu3k,9464
|
158
|
+
pulumi_vault/kv/get_secret_v2.py,sha256=3VS-387JiObhoXCiiDnz-k2Dwk8-g4oI7RCc4R97pQo,10553
|
159
159
|
pulumi_vault/kv/get_secrets_list.py,sha256=MsFXeriDnqVGTlrIBdleUece641IXYOmGCz9M7zVR0w,5857
|
160
160
|
pulumi_vault/kv/get_secrets_list_v2.py,sha256=lf8cQc29bQuW3COVTepppKO9fKQc3mHVNCtwxXGO18U,7987
|
161
|
-
pulumi_vault/kv/outputs.py,sha256=
|
162
|
-
pulumi_vault/kv/secret.py,sha256=
|
161
|
+
pulumi_vault/kv/outputs.py,sha256=sz0GKp-NvIAzP_lEwnmPfOLAyiqJXy7TDTa7wIL9vYw,3639
|
162
|
+
pulumi_vault/kv/secret.py,sha256=mbAL7uh6E8ROBX-oM3gCD3EBFJ2WeG3FG73VSCTF8TQ,15997
|
163
163
|
pulumi_vault/kv/secret_backend_v2.py,sha256=ZwV2WlOrhkLss4GEKS8tx_11dj0oweuukkWMkqf0i2U,18979
|
164
|
-
pulumi_vault/kv/secret_v2.py,sha256=
|
164
|
+
pulumi_vault/kv/secret_v2.py,sha256=EYbjJIQlNwWOeLdAwqf33U-6h6Hxwd_NPdXUFqN8EZ0,36238
|
165
165
|
pulumi_vault/ldap/__init__.py,sha256=mNTQURo6CGBFeZf13WaYyNlRpXZzyME5qGhHrVfgLeM,598
|
166
166
|
pulumi_vault/ldap/auth_backend.py,sha256=aVwYmWxT2l9JNYzWEoIbJeExbAT4gWDrd2X7Zja5Vow,84686
|
167
167
|
pulumi_vault/ldap/auth_backend_group.py,sha256=qz3-mcwcVBE-ky1uCUsmhVecZtbti4Z-P3p-cITv-lQ,16421
|
168
168
|
pulumi_vault/ldap/auth_backend_user.py,sha256=5_dV0WTpXKqSVG2iKQutrw6SXh6_4cR1PjxGtbPSmGg,18489
|
169
169
|
pulumi_vault/ldap/get_dynamic_credentials.py,sha256=7SEtcWfowEFQCQy8ZDCnTEkrx3exwDW1Pf5_cNyWH_Q,6535
|
170
170
|
pulumi_vault/ldap/get_static_credentials.py,sha256=3_itUINQ2wMoeKbZ-8ahzV3Nm8gyKntVrQ1o8MgwjM8,6722
|
171
|
-
pulumi_vault/ldap/secret_backend.py,sha256=
|
171
|
+
pulumi_vault/ldap/secret_backend.py,sha256=Krnb9gS7cbREQrdQnTjpa68YFJTkdYjs6HGznJaqsEk,93335
|
172
172
|
pulumi_vault/ldap/secret_backend_dynamic_role.py,sha256=rhHdj49ygcHHjjZKVsaDsxP6DVh4xDOiW0_nO5ydm44,37797
|
173
173
|
pulumi_vault/ldap/secret_backend_library_set.py,sha256=BIJESsXsPQ3goKvE98ncx7CbVpEbf2VKgbReSOGStv0,23928
|
174
174
|
pulumi_vault/ldap/secret_backend_static_role.py,sha256=61ii3cvtHzS0PEMxDGoST7b1lgh3Tz1soS29e7IojKw,23975
|
@@ -186,15 +186,15 @@ pulumi_vault/okta/auth_backend_group.py,sha256=5Sw2MK4d5AnVMXT3O1a8fMbiqDOP1gmau
|
|
186
186
|
pulumi_vault/okta/auth_backend_user.py,sha256=kiNHbdduI1R4XWbtnHWvdCIW8xR-UykSQGp1CLujeRk,16937
|
187
187
|
pulumi_vault/okta/outputs.py,sha256=8IPwy3nKDVxvwT8wd9dyFm3hfPYd_FXZ4TcCkT9vUR4,3067
|
188
188
|
pulumi_vault/pkisecret/__init__.py,sha256=Lwp_52rZJohEKOGZTENoaHtUcsrMDlAa87JRrMSrXcw,1103
|
189
|
-
pulumi_vault/pkisecret/_inputs.py,sha256=
|
189
|
+
pulumi_vault/pkisecret/_inputs.py,sha256=9xWkZUNUGmnCHEOTpaniuRBRB4j-OPCUK4mCM_GqwKI,3704
|
190
190
|
pulumi_vault/pkisecret/backend_config_cluster.py,sha256=gJDXjoh1qkAnXm6BAP65AXrDaY2q8aZpclglNBwCx2U,15929
|
191
|
-
pulumi_vault/pkisecret/backend_config_est.py,sha256=
|
192
|
-
pulumi_vault/pkisecret/get_backend_config_est.py,sha256=
|
191
|
+
pulumi_vault/pkisecret/backend_config_est.py,sha256=6X8rBvk2KbCQwd21jAmDG54fmkTneLUlY7HgkoM3xBA,32746
|
192
|
+
pulumi_vault/pkisecret/get_backend_config_est.py,sha256=41i3uDT7yuHEhK-8qqHe7EG0m5NhPclBoo9SX8JtsSw,9896
|
193
193
|
pulumi_vault/pkisecret/get_backend_issuer.py,sha256=098K4SWse6Xt5NCzqLqFFaqMHtuPHlrJ6PjgJjIj698,9909
|
194
|
-
pulumi_vault/pkisecret/get_backend_issuers.py,sha256=
|
194
|
+
pulumi_vault/pkisecret/get_backend_issuers.py,sha256=KhPGVR17tl1nf7-BYBr_4zIaN4L-WW13gRuBmHWFUB8,6398
|
195
195
|
pulumi_vault/pkisecret/get_backend_key.py,sha256=NIjBO6CBmZ0gJ44wWnz510nQ4E47aQhuytFE-iSyhXY,6930
|
196
|
-
pulumi_vault/pkisecret/get_backend_keys.py,sha256=
|
197
|
-
pulumi_vault/pkisecret/outputs.py,sha256=
|
196
|
+
pulumi_vault/pkisecret/get_backend_keys.py,sha256=comV5OeM62Bmt22NVILZGmwZIUtOqmG56UIFXymeunw,6303
|
197
|
+
pulumi_vault/pkisecret/outputs.py,sha256=g6-m75rjXqrvXZFl_9qYTV2r1mUUBwyIzx2cLDPkDLo,3879
|
198
198
|
pulumi_vault/pkisecret/secret_backend_cert.py,sha256=arfvGLS6IEmMVdIAl7d5OTjPPt05VGtRKdYV7QhMSnc,49699
|
199
199
|
pulumi_vault/pkisecret/secret_backend_config_ca.py,sha256=8JIjvEqZ-2uCuK6sh7TwhVdU5RgakdsGjham4iRsKUg,18958
|
200
200
|
pulumi_vault/pkisecret/secret_backend_config_issuers.py,sha256=Hrk1TZ-vIYlDE-lmBRPndL2dwTh9MZbDN1Q3AVA6IZ0,16978
|
@@ -215,15 +215,15 @@ pulumi_vault/rabbitmq/secret_backend.py,sha256=-zTNdxJnOiA15YQgrpU8D8vLInERKluV0
|
|
215
215
|
pulumi_vault/rabbitmq/secret_backend_role.py,sha256=nRopingpPK1iM-15J9R1o4wRyn-b4bYPUG62Vw7pv1k,21885
|
216
216
|
pulumi_vault/saml/__init__.py,sha256=xsw9vLzgRVpWx9FOuKA-TpYcz6uP_pARoK68kHx5VD0,330
|
217
217
|
pulumi_vault/saml/auth_backend.py,sha256=8WQ8Khic14UyBR09xiyD0f6_zmBmbqp7hAQCmTjsAAY,33482
|
218
|
-
pulumi_vault/saml/auth_backend_role.py,sha256=
|
218
|
+
pulumi_vault/saml/auth_backend_role.py,sha256=SlsoFBOY-p0_IbFd9mekxYDHcU34tgBbgD_VQQy3Sro,46209
|
219
219
|
pulumi_vault/secrets/__init__.py,sha256=BeE8hcCWY2JMJkTP4WW7lm6EaINiU2Bsg-jJbDb7Ay0,589
|
220
220
|
pulumi_vault/secrets/_inputs.py,sha256=JAbTz_zOoqoLuRJidDa-nRBS1jZtM_oCgkEtGQo_2gY,3000
|
221
221
|
pulumi_vault/secrets/outputs.py,sha256=JzRu1E5lg45Umu_Yk5XC4hBpohQ_jz4c7dy0Xe2eh6w,3202
|
222
222
|
pulumi_vault/secrets/sync_association.py,sha256=NHcDk1GbswksKwTAMlUyDDwHaJY79Fixb1VfNW8n5uM,17959
|
223
|
-
pulumi_vault/secrets/sync_aws_destination.py,sha256=
|
224
|
-
pulumi_vault/secrets/sync_azure_destination.py,sha256=
|
223
|
+
pulumi_vault/secrets/sync_aws_destination.py,sha256=FF_q5lEKtYTRyDkdZKkJch1v3H8OfAwJTEZvQEcVT3E,38747
|
224
|
+
pulumi_vault/secrets/sync_azure_destination.py,sha256=AHsC4RUytSMH8oYalOo-iv245fJTqoyW1O9OmVEUDOI,32456
|
225
225
|
pulumi_vault/secrets/sync_config.py,sha256=BGky9lztuRW2WXdGuc5piMhsrj06uO_uU3JP8E6rYpw,12292
|
226
|
-
pulumi_vault/secrets/sync_gcp_destination.py,sha256=
|
226
|
+
pulumi_vault/secrets/sync_gcp_destination.py,sha256=z0WuPc75itu_N6TABL0KgOQGSdu-Gv7PVCWzUd7cFys,26415
|
227
227
|
pulumi_vault/secrets/sync_gh_destination.py,sha256=_Opq7wKKE_HSb24_muIGGqwu1By0LXW3Qn9Ab5YSHIA,32177
|
228
228
|
pulumi_vault/secrets/sync_github_apps.py,sha256=RC6noSrkc4AAR_WH6j86LSelvu0DF51bPy_5eK54Sk4,15204
|
229
229
|
pulumi_vault/secrets/sync_vercel_destination.py,sha256=B8arlRQKsFdnbGRSX7kRc9L1iwGN4UyY8piv1lFAcN8,26648
|
@@ -231,7 +231,7 @@ pulumi_vault/ssh/__init__.py,sha256=kSaEW40BMdCU_LlCcy8YIBYROxHLbXfyHdaMRDm76i0,
|
|
231
231
|
pulumi_vault/ssh/_inputs.py,sha256=zzFLYpXF1He2rAw0MhNFIjIeNu_vYl9g66lgEDAE7mo,1814
|
232
232
|
pulumi_vault/ssh/outputs.py,sha256=a0189oQadVTUrNWG0Hmcop5grRmHp54DWlIsFGi-Njs,1446
|
233
233
|
pulumi_vault/ssh/secret_backend_ca.py,sha256=S8CwJzCulU1JF0ucX3CyXVIaTyGleasM73eRzn7OJPI,22475
|
234
|
-
pulumi_vault/ssh/secret_backend_role.py,sha256=
|
234
|
+
pulumi_vault/ssh/secret_backend_role.py,sha256=9kWQ9oSj5dcI_dJhKCy26yYqQmZSd6qBJOAF3BjuAWs,72953
|
235
235
|
pulumi_vault/terraformcloud/__init__.py,sha256=sNst-XlgbdicqCgFwaD4FZQ1Qbpf3mMh6Q5Fn1J4Arg,354
|
236
236
|
pulumi_vault/terraformcloud/secret_backend.py,sha256=XrRZcRglDbb0jmEToX7EFY8FtyyN4v_VvGpus40kJeo,23277
|
237
237
|
pulumi_vault/terraformcloud/secret_creds.py,sha256=jbREz0TwC7-0Psi4Y_E8d1iHsnvOthQiLEjUouz7uwk,17867
|
@@ -240,17 +240,17 @@ pulumi_vault/tokenauth/__init__.py,sha256=uj-EJDeysMWfUsv2u4NII_tnIzZFXkTcEpYvGp
|
|
240
240
|
pulumi_vault/tokenauth/auth_backend_role.py,sha256=9ZTafjjr8SZyagQdcPe7EJrP_4XisI0zGwtvMWR84pI,52075
|
241
241
|
pulumi_vault/transform/__init__.py,sha256=cywOzL5fbNIQ8v8Wb5KHP7zIxlbdiilO6z2JyG2gYLw,419
|
242
242
|
pulumi_vault/transform/alphabet.py,sha256=pmnJkGvjKrOzhnSP98G4aOrs7Q12yZNMW1EIGp-Pw2o,13677
|
243
|
-
pulumi_vault/transform/get_decode.py,sha256=
|
244
|
-
pulumi_vault/transform/get_encode.py,sha256=
|
243
|
+
pulumi_vault/transform/get_decode.py,sha256=nZvzv2aVRm-zKb_4CP9G7eKvNdZoYVhNM7cVOKih8DA,11239
|
244
|
+
pulumi_vault/transform/get_encode.py,sha256=ZIJwYXv0iXjYF6unJATe-VhCKpYyVEWERKa-8fUUBtU,11305
|
245
245
|
pulumi_vault/transform/role.py,sha256=uN2lobsaKlNPP4_yUl0q7Sd188ZLte_KUOnYyfultP0,14412
|
246
|
-
pulumi_vault/transform/template.py,sha256=
|
246
|
+
pulumi_vault/transform/template.py,sha256=6ToAKOiKCMrIYC4D4WxFFxNQXgCPGBlekT6C_caQGBE,25781
|
247
247
|
pulumi_vault/transform/transformation.py,sha256=BREWjtkeuUX5GTfAEhFJbm2xzA5Txj-VDsqXrPxO2LQ,26624
|
248
248
|
pulumi_vault/transit/__init__.py,sha256=rjEd-GCT71lWrlA0gWd5FYxE14DRdMix9OhIHlg4ctw,392
|
249
249
|
pulumi_vault/transit/get_decrypt.py,sha256=6rFzK4Ghf3tWRNJ_rSCs0yJsPynk9oeqZIJJq9oxm14,5628
|
250
250
|
pulumi_vault/transit/get_encrypt.py,sha256=wz1GDrLP8JzDLCcjbU7tZM7vHNtBQ9PPpLHczy22uqY,5712
|
251
|
-
pulumi_vault/transit/secret_backend_key.py,sha256=
|
251
|
+
pulumi_vault/transit/secret_backend_key.py,sha256=TvhANJk2QhzSa9DfwcOHXECM5EzKuwIZtHdMMDJ-PqA,53370
|
252
252
|
pulumi_vault/transit/secret_cache_config.py,sha256=kSfKajNG2v5iPtoEnNLRXCIR5sRGUqTTxRW-tT0X_iM,12483
|
253
|
-
pulumi_vault-6.4.
|
254
|
-
pulumi_vault-6.4.
|
255
|
-
pulumi_vault-6.4.
|
256
|
-
pulumi_vault-6.4.
|
253
|
+
pulumi_vault-6.4.0a1724220732.dist-info/METADATA,sha256=2MvTR1NVooeUBVHjGx-ex6e0f2IPdosrX-ykcYqlPuw,4860
|
254
|
+
pulumi_vault-6.4.0a1724220732.dist-info/WHEEL,sha256=Mdi9PDNwEZptOjTlUcAth7XJDFtKrHYaQMPulZeBCiQ,91
|
255
|
+
pulumi_vault-6.4.0a1724220732.dist-info/top_level.txt,sha256=J7lAGvfexHc6T1EpDBGNKF0SXWURpmUhyzi9Nr5I61w,13
|
256
|
+
pulumi_vault-6.4.0a1724220732.dist-info/RECORD,,
|
{pulumi_vault-6.4.0a1723454543.dist-info → pulumi_vault-6.4.0a1724220732.dist-info}/top_level.txt
RENAMED
File without changes
|