pulumi-vault 6.5.0__py3-none-any.whl → 6.5.0a1732603022__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 +0 -24
- pulumi_vault/ad/get_access_credentials.py +2 -2
- pulumi_vault/approle/get_auth_backend_role_id.py +2 -2
- pulumi_vault/aws/auth_backend_sts_role.py +0 -47
- pulumi_vault/aws/get_access_credentials.py +2 -2
- pulumi_vault/aws/get_static_access_credentials.py +2 -2
- pulumi_vault/aws/secret_backend.py +0 -141
- pulumi_vault/azure/get_access_credentials.py +2 -2
- pulumi_vault/database/_inputs.py +0 -40
- pulumi_vault/database/outputs.py +0 -28
- pulumi_vault/gcp/get_auth_backend_role.py +2 -2
- pulumi_vault/generic/get_secret.py +2 -2
- pulumi_vault/get_auth_backend.py +2 -2
- pulumi_vault/get_auth_backends.py +2 -2
- pulumi_vault/get_namespace.py +2 -2
- pulumi_vault/get_namespaces.py +2 -2
- pulumi_vault/get_nomad_access_token.py +2 -2
- pulumi_vault/get_policy_document.py +2 -2
- pulumi_vault/get_raft_autopilot_state.py +2 -2
- pulumi_vault/identity/get_entity.py +2 -2
- pulumi_vault/identity/get_group.py +2 -2
- pulumi_vault/identity/get_oidc_client_creds.py +2 -2
- pulumi_vault/identity/get_oidc_openid_config.py +2 -2
- pulumi_vault/identity/get_oidc_public_keys.py +2 -2
- pulumi_vault/kubernetes/get_auth_backend_config.py +2 -2
- pulumi_vault/kubernetes/get_auth_backend_role.py +2 -2
- pulumi_vault/kubernetes/get_service_account_token.py +2 -2
- pulumi_vault/kv/get_secret.py +2 -2
- pulumi_vault/kv/get_secret_subkeys_v2.py +2 -2
- pulumi_vault/kv/get_secret_v2.py +2 -2
- pulumi_vault/kv/get_secrets_list.py +2 -2
- pulumi_vault/kv/get_secrets_list_v2.py +2 -2
- pulumi_vault/ldap/get_dynamic_credentials.py +2 -2
- pulumi_vault/ldap/get_static_credentials.py +2 -2
- pulumi_vault/pkisecret/__init__.py +0 -4
- pulumi_vault/pkisecret/_inputs.py +0 -34
- pulumi_vault/pkisecret/get_backend_config_est.py +2 -2
- pulumi_vault/pkisecret/get_backend_issuer.py +2 -2
- pulumi_vault/pkisecret/get_backend_issuers.py +2 -2
- pulumi_vault/pkisecret/get_backend_key.py +2 -2
- pulumi_vault/pkisecret/get_backend_keys.py +2 -2
- pulumi_vault/pkisecret/outputs.py +0 -40
- pulumi_vault/pkisecret/secret_backend_role.py +0 -47
- pulumi_vault/pulumi-plugin.json +1 -1
- pulumi_vault/ssh/secret_backend_role.py +0 -27
- pulumi_vault/transform/get_decode.py +2 -2
- pulumi_vault/transform/get_encode.py +2 -2
- pulumi_vault/transit/get_decrypt.py +2 -2
- pulumi_vault/transit/get_encrypt.py +2 -2
- {pulumi_vault-6.5.0.dist-info → pulumi_vault-6.5.0a1732603022.dist-info}/METADATA +4 -4
- {pulumi_vault-6.5.0.dist-info → pulumi_vault-6.5.0a1732603022.dist-info}/RECORD +53 -57
- {pulumi_vault-6.5.0.dist-info → pulumi_vault-6.5.0a1732603022.dist-info}/WHEEL +1 -1
- pulumi_vault/pkisecret/backend_acme_eab.py +0 -549
- pulumi_vault/pkisecret/backend_config_acme.py +0 -642
- pulumi_vault/pkisecret/backend_config_cmpv2.py +0 -525
- pulumi_vault/pkisecret/get_backend_config_cmpv2.py +0 -209
- {pulumi_vault-6.5.0.dist-info → pulumi_vault-6.5.0a1732603022.dist-info}/top_level.txt +0 -0
@@ -1,209 +0,0 @@
|
|
1
|
-
# coding=utf-8
|
2
|
-
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
3
|
-
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
-
|
5
|
-
import copy
|
6
|
-
import warnings
|
7
|
-
import sys
|
8
|
-
import pulumi
|
9
|
-
import pulumi.runtime
|
10
|
-
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
-
if sys.version_info >= (3, 11):
|
12
|
-
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
-
else:
|
14
|
-
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
15
|
-
from .. import _utilities
|
16
|
-
from . import outputs
|
17
|
-
|
18
|
-
__all__ = [
|
19
|
-
'GetBackendConfigCmpv2Result',
|
20
|
-
'AwaitableGetBackendConfigCmpv2Result',
|
21
|
-
'get_backend_config_cmpv2',
|
22
|
-
'get_backend_config_cmpv2_output',
|
23
|
-
]
|
24
|
-
|
25
|
-
@pulumi.output_type
|
26
|
-
class GetBackendConfigCmpv2Result:
|
27
|
-
"""
|
28
|
-
A collection of values returned by getBackendConfigCmpv2.
|
29
|
-
"""
|
30
|
-
def __init__(__self__, audit_fields=None, authenticators=None, backend=None, default_path_policy=None, enable_sentinel_parsing=None, enabled=None, id=None, last_updated=None, namespace=None):
|
31
|
-
if audit_fields and not isinstance(audit_fields, list):
|
32
|
-
raise TypeError("Expected argument 'audit_fields' to be a list")
|
33
|
-
pulumi.set(__self__, "audit_fields", audit_fields)
|
34
|
-
if authenticators and not isinstance(authenticators, list):
|
35
|
-
raise TypeError("Expected argument 'authenticators' to be a list")
|
36
|
-
pulumi.set(__self__, "authenticators", authenticators)
|
37
|
-
if backend and not isinstance(backend, str):
|
38
|
-
raise TypeError("Expected argument 'backend' to be a str")
|
39
|
-
pulumi.set(__self__, "backend", backend)
|
40
|
-
if default_path_policy and not isinstance(default_path_policy, str):
|
41
|
-
raise TypeError("Expected argument 'default_path_policy' to be a str")
|
42
|
-
pulumi.set(__self__, "default_path_policy", default_path_policy)
|
43
|
-
if enable_sentinel_parsing and not isinstance(enable_sentinel_parsing, bool):
|
44
|
-
raise TypeError("Expected argument 'enable_sentinel_parsing' to be a bool")
|
45
|
-
pulumi.set(__self__, "enable_sentinel_parsing", enable_sentinel_parsing)
|
46
|
-
if enabled and not isinstance(enabled, bool):
|
47
|
-
raise TypeError("Expected argument 'enabled' to be a bool")
|
48
|
-
pulumi.set(__self__, "enabled", enabled)
|
49
|
-
if id and not isinstance(id, str):
|
50
|
-
raise TypeError("Expected argument 'id' to be a str")
|
51
|
-
pulumi.set(__self__, "id", id)
|
52
|
-
if last_updated and not isinstance(last_updated, str):
|
53
|
-
raise TypeError("Expected argument 'last_updated' to be a str")
|
54
|
-
pulumi.set(__self__, "last_updated", last_updated)
|
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
|
-
|
59
|
-
@property
|
60
|
-
@pulumi.getter(name="auditFields")
|
61
|
-
def audit_fields(self) -> Sequence[str]:
|
62
|
-
return pulumi.get(self, "audit_fields")
|
63
|
-
|
64
|
-
@property
|
65
|
-
@pulumi.getter
|
66
|
-
def authenticators(self) -> Sequence['outputs.GetBackendConfigCmpv2AuthenticatorResult']:
|
67
|
-
return pulumi.get(self, "authenticators")
|
68
|
-
|
69
|
-
@property
|
70
|
-
@pulumi.getter
|
71
|
-
def backend(self) -> str:
|
72
|
-
return pulumi.get(self, "backend")
|
73
|
-
|
74
|
-
@property
|
75
|
-
@pulumi.getter(name="defaultPathPolicy")
|
76
|
-
def default_path_policy(self) -> str:
|
77
|
-
return pulumi.get(self, "default_path_policy")
|
78
|
-
|
79
|
-
@property
|
80
|
-
@pulumi.getter(name="enableSentinelParsing")
|
81
|
-
def enable_sentinel_parsing(self) -> bool:
|
82
|
-
return pulumi.get(self, "enable_sentinel_parsing")
|
83
|
-
|
84
|
-
@property
|
85
|
-
@pulumi.getter
|
86
|
-
def enabled(self) -> bool:
|
87
|
-
return pulumi.get(self, "enabled")
|
88
|
-
|
89
|
-
@property
|
90
|
-
@pulumi.getter
|
91
|
-
def id(self) -> str:
|
92
|
-
"""
|
93
|
-
The provider-assigned unique ID for this managed resource.
|
94
|
-
"""
|
95
|
-
return pulumi.get(self, "id")
|
96
|
-
|
97
|
-
@property
|
98
|
-
@pulumi.getter(name="lastUpdated")
|
99
|
-
def last_updated(self) -> str:
|
100
|
-
return pulumi.get(self, "last_updated")
|
101
|
-
|
102
|
-
@property
|
103
|
-
@pulumi.getter
|
104
|
-
def namespace(self) -> Optional[str]:
|
105
|
-
return pulumi.get(self, "namespace")
|
106
|
-
|
107
|
-
|
108
|
-
class AwaitableGetBackendConfigCmpv2Result(GetBackendConfigCmpv2Result):
|
109
|
-
# pylint: disable=using-constant-test
|
110
|
-
def __await__(self):
|
111
|
-
if False:
|
112
|
-
yield self
|
113
|
-
return GetBackendConfigCmpv2Result(
|
114
|
-
audit_fields=self.audit_fields,
|
115
|
-
authenticators=self.authenticators,
|
116
|
-
backend=self.backend,
|
117
|
-
default_path_policy=self.default_path_policy,
|
118
|
-
enable_sentinel_parsing=self.enable_sentinel_parsing,
|
119
|
-
enabled=self.enabled,
|
120
|
-
id=self.id,
|
121
|
-
last_updated=self.last_updated,
|
122
|
-
namespace=self.namespace)
|
123
|
-
|
124
|
-
|
125
|
-
def get_backend_config_cmpv2(backend: Optional[str] = None,
|
126
|
-
namespace: Optional[str] = None,
|
127
|
-
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetBackendConfigCmpv2Result:
|
128
|
-
"""
|
129
|
-
## Example Usage
|
130
|
-
|
131
|
-
```python
|
132
|
-
import pulumi
|
133
|
-
import pulumi_vault as vault
|
134
|
-
|
135
|
-
pki = vault.Mount("pki",
|
136
|
-
path="pki",
|
137
|
-
type="pki",
|
138
|
-
description="PKI secret engine mount")
|
139
|
-
cmpv2_config = vault.pkiSecret.get_backend_config_cmpv2_output(backend=pki.path)
|
140
|
-
```
|
141
|
-
|
142
|
-
|
143
|
-
:param str backend: The path to the PKI secret backend to
|
144
|
-
read the CMPv2 configuration from, with no leading or trailing `/`s.
|
145
|
-
|
146
|
-
# Attributes Reference
|
147
|
-
:param str namespace: The namespace of the target resource.
|
148
|
-
The value should not contain leading or trailing forward slashes.
|
149
|
-
The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
|
150
|
-
*Available only for Vault Enterprise*.
|
151
|
-
"""
|
152
|
-
__args__ = dict()
|
153
|
-
__args__['backend'] = backend
|
154
|
-
__args__['namespace'] = namespace
|
155
|
-
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
156
|
-
__ret__ = pulumi.runtime.invoke('vault:pkiSecret/getBackendConfigCmpv2:getBackendConfigCmpv2', __args__, opts=opts, typ=GetBackendConfigCmpv2Result).value
|
157
|
-
|
158
|
-
return AwaitableGetBackendConfigCmpv2Result(
|
159
|
-
audit_fields=pulumi.get(__ret__, 'audit_fields'),
|
160
|
-
authenticators=pulumi.get(__ret__, 'authenticators'),
|
161
|
-
backend=pulumi.get(__ret__, 'backend'),
|
162
|
-
default_path_policy=pulumi.get(__ret__, 'default_path_policy'),
|
163
|
-
enable_sentinel_parsing=pulumi.get(__ret__, 'enable_sentinel_parsing'),
|
164
|
-
enabled=pulumi.get(__ret__, 'enabled'),
|
165
|
-
id=pulumi.get(__ret__, 'id'),
|
166
|
-
last_updated=pulumi.get(__ret__, 'last_updated'),
|
167
|
-
namespace=pulumi.get(__ret__, 'namespace'))
|
168
|
-
def get_backend_config_cmpv2_output(backend: Optional[pulumi.Input[str]] = None,
|
169
|
-
namespace: Optional[pulumi.Input[Optional[str]]] = None,
|
170
|
-
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetBackendConfigCmpv2Result]:
|
171
|
-
"""
|
172
|
-
## Example Usage
|
173
|
-
|
174
|
-
```python
|
175
|
-
import pulumi
|
176
|
-
import pulumi_vault as vault
|
177
|
-
|
178
|
-
pki = vault.Mount("pki",
|
179
|
-
path="pki",
|
180
|
-
type="pki",
|
181
|
-
description="PKI secret engine mount")
|
182
|
-
cmpv2_config = vault.pkiSecret.get_backend_config_cmpv2_output(backend=pki.path)
|
183
|
-
```
|
184
|
-
|
185
|
-
|
186
|
-
:param str backend: The path to the PKI secret backend to
|
187
|
-
read the CMPv2 configuration from, with no leading or trailing `/`s.
|
188
|
-
|
189
|
-
# Attributes Reference
|
190
|
-
:param str namespace: The namespace of the target resource.
|
191
|
-
The value should not contain leading or trailing forward slashes.
|
192
|
-
The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
|
193
|
-
*Available only for Vault Enterprise*.
|
194
|
-
"""
|
195
|
-
__args__ = dict()
|
196
|
-
__args__['backend'] = backend
|
197
|
-
__args__['namespace'] = namespace
|
198
|
-
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
199
|
-
__ret__ = pulumi.runtime.invoke_output('vault:pkiSecret/getBackendConfigCmpv2:getBackendConfigCmpv2', __args__, opts=opts, typ=GetBackendConfigCmpv2Result)
|
200
|
-
return __ret__.apply(lambda __response__: GetBackendConfigCmpv2Result(
|
201
|
-
audit_fields=pulumi.get(__response__, 'audit_fields'),
|
202
|
-
authenticators=pulumi.get(__response__, 'authenticators'),
|
203
|
-
backend=pulumi.get(__response__, 'backend'),
|
204
|
-
default_path_policy=pulumi.get(__response__, 'default_path_policy'),
|
205
|
-
enable_sentinel_parsing=pulumi.get(__response__, 'enable_sentinel_parsing'),
|
206
|
-
enabled=pulumi.get(__response__, 'enabled'),
|
207
|
-
id=pulumi.get(__response__, 'id'),
|
208
|
-
last_updated=pulumi.get(__response__, 'last_updated'),
|
209
|
-
namespace=pulumi.get(__response__, 'namespace')))
|
File without changes
|