pulumi-vault 6.0.0__py3-none-any.whl → 6.1.0__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 +2 -0
- pulumi_vault/get_namespace.py +225 -0
- pulumi_vault/get_namespaces.py +152 -0
- pulumi_vault/kubernetes/secret_backend_role.py +99 -25
- pulumi_vault/mongodbatlas/secret_backend.py +6 -6
- pulumi_vault/mongodbatlas/secret_role.py +27 -27
- pulumi_vault/secrets/__init__.py +2 -0
- pulumi_vault/secrets/_inputs.py +80 -0
- pulumi_vault/secrets/outputs.py +89 -0
- pulumi_vault/secrets/sync_association.py +32 -58
- pulumi_vault/secrets/sync_aws_destination.py +54 -0
- pulumi_vault/secrets/sync_azure_destination.py +54 -0
- pulumi_vault/secrets/sync_gcp_destination.py +54 -0
- pulumi_vault/secrets/sync_gh_destination.py +54 -0
- pulumi_vault/secrets/sync_vercel_destination.py +54 -0
- {pulumi_vault-6.0.0.dist-info → pulumi_vault-6.1.0.dist-info}/METADATA +1 -1
- {pulumi_vault-6.0.0.dist-info → pulumi_vault-6.1.0.dist-info}/RECORD +19 -15
- {pulumi_vault-6.0.0.dist-info → pulumi_vault-6.1.0.dist-info}/WHEEL +0 -0
- {pulumi_vault-6.0.0.dist-info → pulumi_vault-6.1.0.dist-info}/top_level.txt +0 -0
@@ -17,6 +17,7 @@ class SyncVercelDestinationArgs:
|
|
17
17
|
access_token: pulumi.Input[str],
|
18
18
|
deployment_environments: pulumi.Input[Sequence[pulumi.Input[str]]],
|
19
19
|
project_id: pulumi.Input[str],
|
20
|
+
granularity: Optional[pulumi.Input[str]] = None,
|
20
21
|
name: Optional[pulumi.Input[str]] = None,
|
21
22
|
namespace: Optional[pulumi.Input[str]] = None,
|
22
23
|
secret_name_template: Optional[pulumi.Input[str]] = None,
|
@@ -28,6 +29,8 @@ class SyncVercelDestinationArgs:
|
|
28
29
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] deployment_environments: Deployment environments where the environment variables
|
29
30
|
are available. Accepts `development`, `preview` and `production`.
|
30
31
|
:param pulumi.Input[str] project_id: Project ID where to manage environment variables.
|
32
|
+
:param pulumi.Input[str] granularity: Determines what level of information is synced as a distinct resource
|
33
|
+
at the destination. Supports `secret-path` and `secret-key`.
|
31
34
|
:param pulumi.Input[str] name: Unique name of the GitHub destination.
|
32
35
|
:param pulumi.Input[str] namespace: The namespace to provision the resource in.
|
33
36
|
The value should not contain leading or trailing forward slashes.
|
@@ -39,6 +42,8 @@ class SyncVercelDestinationArgs:
|
|
39
42
|
pulumi.set(__self__, "access_token", access_token)
|
40
43
|
pulumi.set(__self__, "deployment_environments", deployment_environments)
|
41
44
|
pulumi.set(__self__, "project_id", project_id)
|
45
|
+
if granularity is not None:
|
46
|
+
pulumi.set(__self__, "granularity", granularity)
|
42
47
|
if name is not None:
|
43
48
|
pulumi.set(__self__, "name", name)
|
44
49
|
if namespace is not None:
|
@@ -86,6 +91,19 @@ class SyncVercelDestinationArgs:
|
|
86
91
|
def project_id(self, value: pulumi.Input[str]):
|
87
92
|
pulumi.set(self, "project_id", value)
|
88
93
|
|
94
|
+
@property
|
95
|
+
@pulumi.getter
|
96
|
+
def granularity(self) -> Optional[pulumi.Input[str]]:
|
97
|
+
"""
|
98
|
+
Determines what level of information is synced as a distinct resource
|
99
|
+
at the destination. Supports `secret-path` and `secret-key`.
|
100
|
+
"""
|
101
|
+
return pulumi.get(self, "granularity")
|
102
|
+
|
103
|
+
@granularity.setter
|
104
|
+
def granularity(self, value: Optional[pulumi.Input[str]]):
|
105
|
+
pulumi.set(self, "granularity", value)
|
106
|
+
|
89
107
|
@property
|
90
108
|
@pulumi.getter
|
91
109
|
def name(self) -> Optional[pulumi.Input[str]]:
|
@@ -143,6 +161,7 @@ class _SyncVercelDestinationState:
|
|
143
161
|
def __init__(__self__, *,
|
144
162
|
access_token: Optional[pulumi.Input[str]] = None,
|
145
163
|
deployment_environments: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
164
|
+
granularity: Optional[pulumi.Input[str]] = None,
|
146
165
|
name: Optional[pulumi.Input[str]] = None,
|
147
166
|
namespace: Optional[pulumi.Input[str]] = None,
|
148
167
|
project_id: Optional[pulumi.Input[str]] = None,
|
@@ -155,6 +174,8 @@ class _SyncVercelDestinationState:
|
|
155
174
|
variables.
|
156
175
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] deployment_environments: Deployment environments where the environment variables
|
157
176
|
are available. Accepts `development`, `preview` and `production`.
|
177
|
+
:param pulumi.Input[str] granularity: Determines what level of information is synced as a distinct resource
|
178
|
+
at the destination. Supports `secret-path` and `secret-key`.
|
158
179
|
:param pulumi.Input[str] name: Unique name of the GitHub destination.
|
159
180
|
:param pulumi.Input[str] namespace: The namespace to provision the resource in.
|
160
181
|
The value should not contain leading or trailing forward slashes.
|
@@ -169,6 +190,8 @@ class _SyncVercelDestinationState:
|
|
169
190
|
pulumi.set(__self__, "access_token", access_token)
|
170
191
|
if deployment_environments is not None:
|
171
192
|
pulumi.set(__self__, "deployment_environments", deployment_environments)
|
193
|
+
if granularity is not None:
|
194
|
+
pulumi.set(__self__, "granularity", granularity)
|
172
195
|
if name is not None:
|
173
196
|
pulumi.set(__self__, "name", name)
|
174
197
|
if namespace is not None:
|
@@ -208,6 +231,19 @@ class _SyncVercelDestinationState:
|
|
208
231
|
def deployment_environments(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
209
232
|
pulumi.set(self, "deployment_environments", value)
|
210
233
|
|
234
|
+
@property
|
235
|
+
@pulumi.getter
|
236
|
+
def granularity(self) -> Optional[pulumi.Input[str]]:
|
237
|
+
"""
|
238
|
+
Determines what level of information is synced as a distinct resource
|
239
|
+
at the destination. Supports `secret-path` and `secret-key`.
|
240
|
+
"""
|
241
|
+
return pulumi.get(self, "granularity")
|
242
|
+
|
243
|
+
@granularity.setter
|
244
|
+
def granularity(self, value: Optional[pulumi.Input[str]]):
|
245
|
+
pulumi.set(self, "granularity", value)
|
246
|
+
|
211
247
|
@property
|
212
248
|
@pulumi.getter
|
213
249
|
def name(self) -> Optional[pulumi.Input[str]]:
|
@@ -291,6 +327,7 @@ class SyncVercelDestination(pulumi.CustomResource):
|
|
291
327
|
opts: Optional[pulumi.ResourceOptions] = None,
|
292
328
|
access_token: Optional[pulumi.Input[str]] = None,
|
293
329
|
deployment_environments: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
330
|
+
granularity: Optional[pulumi.Input[str]] = None,
|
294
331
|
name: Optional[pulumi.Input[str]] = None,
|
295
332
|
namespace: Optional[pulumi.Input[str]] = None,
|
296
333
|
project_id: Optional[pulumi.Input[str]] = None,
|
@@ -331,6 +368,8 @@ class SyncVercelDestination(pulumi.CustomResource):
|
|
331
368
|
variables.
|
332
369
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] deployment_environments: Deployment environments where the environment variables
|
333
370
|
are available. Accepts `development`, `preview` and `production`.
|
371
|
+
:param pulumi.Input[str] granularity: Determines what level of information is synced as a distinct resource
|
372
|
+
at the destination. Supports `secret-path` and `secret-key`.
|
334
373
|
:param pulumi.Input[str] name: Unique name of the GitHub destination.
|
335
374
|
:param pulumi.Input[str] namespace: The namespace to provision the resource in.
|
336
375
|
The value should not contain leading or trailing forward slashes.
|
@@ -391,6 +430,7 @@ class SyncVercelDestination(pulumi.CustomResource):
|
|
391
430
|
opts: Optional[pulumi.ResourceOptions] = None,
|
392
431
|
access_token: Optional[pulumi.Input[str]] = None,
|
393
432
|
deployment_environments: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
433
|
+
granularity: Optional[pulumi.Input[str]] = None,
|
394
434
|
name: Optional[pulumi.Input[str]] = None,
|
395
435
|
namespace: Optional[pulumi.Input[str]] = None,
|
396
436
|
project_id: Optional[pulumi.Input[str]] = None,
|
@@ -411,6 +451,7 @@ class SyncVercelDestination(pulumi.CustomResource):
|
|
411
451
|
if deployment_environments is None and not opts.urn:
|
412
452
|
raise TypeError("Missing required property 'deployment_environments'")
|
413
453
|
__props__.__dict__["deployment_environments"] = deployment_environments
|
454
|
+
__props__.__dict__["granularity"] = granularity
|
414
455
|
__props__.__dict__["name"] = name
|
415
456
|
__props__.__dict__["namespace"] = namespace
|
416
457
|
if project_id is None and not opts.urn:
|
@@ -433,6 +474,7 @@ class SyncVercelDestination(pulumi.CustomResource):
|
|
433
474
|
opts: Optional[pulumi.ResourceOptions] = None,
|
434
475
|
access_token: Optional[pulumi.Input[str]] = None,
|
435
476
|
deployment_environments: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
477
|
+
granularity: Optional[pulumi.Input[str]] = None,
|
436
478
|
name: Optional[pulumi.Input[str]] = None,
|
437
479
|
namespace: Optional[pulumi.Input[str]] = None,
|
438
480
|
project_id: Optional[pulumi.Input[str]] = None,
|
@@ -450,6 +492,8 @@ class SyncVercelDestination(pulumi.CustomResource):
|
|
450
492
|
variables.
|
451
493
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] deployment_environments: Deployment environments where the environment variables
|
452
494
|
are available. Accepts `development`, `preview` and `production`.
|
495
|
+
:param pulumi.Input[str] granularity: Determines what level of information is synced as a distinct resource
|
496
|
+
at the destination. Supports `secret-path` and `secret-key`.
|
453
497
|
:param pulumi.Input[str] name: Unique name of the GitHub destination.
|
454
498
|
:param pulumi.Input[str] namespace: The namespace to provision the resource in.
|
455
499
|
The value should not contain leading or trailing forward slashes.
|
@@ -466,6 +510,7 @@ class SyncVercelDestination(pulumi.CustomResource):
|
|
466
510
|
|
467
511
|
__props__.__dict__["access_token"] = access_token
|
468
512
|
__props__.__dict__["deployment_environments"] = deployment_environments
|
513
|
+
__props__.__dict__["granularity"] = granularity
|
469
514
|
__props__.__dict__["name"] = name
|
470
515
|
__props__.__dict__["namespace"] = namespace
|
471
516
|
__props__.__dict__["project_id"] = project_id
|
@@ -492,6 +537,15 @@ class SyncVercelDestination(pulumi.CustomResource):
|
|
492
537
|
"""
|
493
538
|
return pulumi.get(self, "deployment_environments")
|
494
539
|
|
540
|
+
@property
|
541
|
+
@pulumi.getter
|
542
|
+
def granularity(self) -> pulumi.Output[Optional[str]]:
|
543
|
+
"""
|
544
|
+
Determines what level of information is synced as a distinct resource
|
545
|
+
at the destination. Supports `secret-path` and `secret-key`.
|
546
|
+
"""
|
547
|
+
return pulumi.get(self, "granularity")
|
548
|
+
|
495
549
|
@property
|
496
550
|
@pulumi.getter
|
497
551
|
def name(self) -> pulumi.Output[str]:
|
@@ -1,4 +1,4 @@
|
|
1
|
-
pulumi_vault/__init__.py,sha256=
|
1
|
+
pulumi_vault/__init__.py,sha256=_sGZ9M5QMS6XkZWln38KH1TMH5d97BLefQWEqqi5B74,31033
|
2
2
|
pulumi_vault/_inputs.py,sha256=Q9weKCzZZ0f0tVbn8d3jxCbKRwRhRzvmBLbinoDTPns,73552
|
3
3
|
pulumi_vault/_utilities.py,sha256=b6gJn0IIeM1t6Q7EVjqw3yhuGyP-uENQhtL5yp7aHR8,9248
|
4
4
|
pulumi_vault/audit.py,sha256=Tz-Z31RMLS8Zop3uQCwrlrUNOV-xNwes73yyGXUdrxo,20655
|
@@ -8,6 +8,8 @@ pulumi_vault/cert_auth_backend_role.py,sha256=y9K82c1USf1_p5MTZ3DuVITDE5RD4N9llR
|
|
8
8
|
pulumi_vault/egp_policy.py,sha256=MKK-hOgUnUhuPGnPtAJQvtyuw03kuTCrUDSALfrQGqU,16697
|
9
9
|
pulumi_vault/get_auth_backend.py,sha256=hjoVv7CNo_DaFJCFQMMgRzpw-bgsQBqjodrnpPypozA,7897
|
10
10
|
pulumi_vault/get_auth_backends.py,sha256=F5JVyU1_QTt6jsAMfu1gonOGPwbEa7xOel_uahv8BIo,5587
|
11
|
+
pulumi_vault/get_namespace.py,sha256=gF_IaA58_f0fKwEUGP8rDnR9oA3557vyWqAgYapQapU,7495
|
12
|
+
pulumi_vault/get_namespaces.py,sha256=6B7yRR9HpqQb_oBdliGd_q62NvisUDlwKQGCzkp5SWc,4666
|
11
13
|
pulumi_vault/get_nomad_access_token.py,sha256=MbTLuIrIQBffZHeu7oNFjTLdtTvSxxpm8sEsVhUqCpA,7389
|
12
14
|
pulumi_vault/get_policy_document.py,sha256=CpRsIuUtkC2noxBydZ23VbUsb-K40VuhdX8e5qhc7h0,5136
|
13
15
|
pulumi_vault/get_raft_autopilot_state.py,sha256=llhnccs5zBbkIKLncZP6ek5DzLFjFJuXSWl-AaibUwk,10007
|
@@ -146,7 +148,7 @@ pulumi_vault/kubernetes/get_auth_backend_config.py,sha256=-B9KKJOJD4Zl9ztTOt5uQ0
|
|
146
148
|
pulumi_vault/kubernetes/get_auth_backend_role.py,sha256=Zv58F4W8UPq3xNr7WbldlEQOndvYG-geGaW1VAp8W9o,21357
|
147
149
|
pulumi_vault/kubernetes/get_service_account_token.py,sha256=Tf4P5WwgmXNjRSZpUSFlJ_XRUhKGGwanXuVd-6rPElI,13847
|
148
150
|
pulumi_vault/kubernetes/secret_backend.py,sha256=6_Ntv1YB9ksxOYipWldIorrU0VJccLvtR0wO5Ioy5fw,50850
|
149
|
-
pulumi_vault/kubernetes/secret_backend_role.py,sha256=
|
151
|
+
pulumi_vault/kubernetes/secret_backend_role.py,sha256=gg8loOg9gnF32Z1rtydHUFwcv1H-Uwebzw5AOalCL9Y,55835
|
150
152
|
pulumi_vault/kv/__init__.py,sha256=dF29_Z4F3d4CnpcCvjG4CWZx6VkI272d4zFV9fgX_xY,553
|
151
153
|
pulumi_vault/kv/_inputs.py,sha256=n--n3d7nkYYifFXynV5hFOGK2iNbGdTIKuGup9BptSo,3628
|
152
154
|
pulumi_vault/kv/get_secret.py,sha256=g_GyICsYsL-O4OenGTMhJMirpxBXeXqblHpgz8bGqM4,7962
|
@@ -173,8 +175,8 @@ pulumi_vault/managed/_inputs.py,sha256=JoiulN7-SUQ8lQ-v7r12T7hdv5uPP1t0T0Zy4TsRM
|
|
173
175
|
pulumi_vault/managed/keys.py,sha256=1MLaMX-lecUqI_WCoebYfjP_t2kvX7fHE1sIuXWmpac,14395
|
174
176
|
pulumi_vault/managed/outputs.py,sha256=KemXbw8tLPYQrzOcXjj-SdXxVR0yYtRJF1Ecuja26Lc,25252
|
175
177
|
pulumi_vault/mongodbatlas/__init__.py,sha256=rFFnsDK7I_OQI879BRJsmBI38wbeas33DdgA375K6ho,326
|
176
|
-
pulumi_vault/mongodbatlas/secret_backend.py,sha256=
|
177
|
-
pulumi_vault/mongodbatlas/secret_role.py,sha256=
|
178
|
+
pulumi_vault/mongodbatlas/secret_backend.py,sha256=4T2-FFR_YxdG7Nh0YhrXCEGh0Nhn-LWCYb4jA6VKlPA,16287
|
179
|
+
pulumi_vault/mongodbatlas/secret_role.py,sha256=Pip7CVdHF69E8N-uLO11lpwUja1OelccuYaC7SC26qY,33705
|
178
180
|
pulumi_vault/okta/__init__.py,sha256=XjquFz2tppASPCFGZ9YE51_cVH69eGAiToFyehc0wcY,409
|
179
181
|
pulumi_vault/okta/_inputs.py,sha256=Tqwi9iCF7LNdkguWQ1VRyYU_63WlCL9MP8qs0I30wsw,3527
|
180
182
|
pulumi_vault/okta/auth_backend.py,sha256=S8fyu1GxElLJXmV5E4KptSlI6tvLl_m4qEZrtpJVOg8,38494
|
@@ -210,15 +212,17 @@ pulumi_vault/rabbitmq/secret_backend_role.py,sha256=Xm91nXb107ZfjZElNoQQwo7v-LMG
|
|
210
212
|
pulumi_vault/saml/__init__.py,sha256=xsw9vLzgRVpWx9FOuKA-TpYcz6uP_pARoK68kHx5VD0,330
|
211
213
|
pulumi_vault/saml/auth_backend.py,sha256=9dbV1e4xDM7XQ3k4Cd0RsCDL6yratapr-l6-bYD-of0,33638
|
212
214
|
pulumi_vault/saml/auth_backend_role.py,sha256=L18USJbLAZJmuwmYakWg3WFMFgcyN0tLgBfbnWqAD8E,55597
|
213
|
-
pulumi_vault/secrets/__init__.py,sha256=
|
214
|
-
pulumi_vault/secrets/
|
215
|
-
pulumi_vault/secrets/
|
216
|
-
pulumi_vault/secrets/
|
215
|
+
pulumi_vault/secrets/__init__.py,sha256=BeE8hcCWY2JMJkTP4WW7lm6EaINiU2Bsg-jJbDb7Ay0,589
|
216
|
+
pulumi_vault/secrets/_inputs.py,sha256=JAbTz_zOoqoLuRJidDa-nRBS1jZtM_oCgkEtGQo_2gY,3000
|
217
|
+
pulumi_vault/secrets/outputs.py,sha256=JzRu1E5lg45Umu_Yk5XC4hBpohQ_jz4c7dy0Xe2eh6w,3202
|
218
|
+
pulumi_vault/secrets/sync_association.py,sha256=kqFq0MphblcqxfHtuePFSelKZAefu-DqvzEivSzxEHM,17933
|
219
|
+
pulumi_vault/secrets/sync_aws_destination.py,sha256=qibdxV2ncd4ATJXfrKLZOoZVmp94Dq8HtodcafkCrw4,38691
|
220
|
+
pulumi_vault/secrets/sync_azure_destination.py,sha256=zJLmPo-ihDMqBQaLKk0Be0mjQehy1Fa9LqdW8p4x3SE,32430
|
217
221
|
pulumi_vault/secrets/sync_config.py,sha256=W7YeUn4XLNT_gd5tLg50CZF5KYmuA1qGWt9Gm4JcP64,12446
|
218
|
-
pulumi_vault/secrets/sync_gcp_destination.py,sha256=
|
219
|
-
pulumi_vault/secrets/sync_gh_destination.py,sha256=
|
222
|
+
pulumi_vault/secrets/sync_gcp_destination.py,sha256=5QtonU2u9lw0Hegxaa1mDg2q9KlAzAP59B_MMG7Gwgc,26301
|
223
|
+
pulumi_vault/secrets/sync_gh_destination.py,sha256=y-4SIB9sLsHGSrLgCqtn_V4u2wqC66pIaODvJke1L-8,32305
|
220
224
|
pulumi_vault/secrets/sync_github_apps.py,sha256=zjZIAXjtLJ9fyhNc7vIsjtaYE2XMi9Lvs16tjxzXplM,15288
|
221
|
-
pulumi_vault/secrets/sync_vercel_destination.py,sha256=
|
225
|
+
pulumi_vault/secrets/sync_vercel_destination.py,sha256=TsvGfQmJBHiP-Fzowh5fcYIjz7EQpYeUVBYu5viMmJI,26768
|
222
226
|
pulumi_vault/ssh/__init__.py,sha256=kSaEW40BMdCU_LlCcy8YIBYROxHLbXfyHdaMRDm76i0,382
|
223
227
|
pulumi_vault/ssh/_inputs.py,sha256=VtpYaFbcwVd9LdyVFH2OB9A9DkhkOX7cDzOTEEG9tDg,2971
|
224
228
|
pulumi_vault/ssh/outputs.py,sha256=Zytp0bxP9Vl2LWUs9-GNH45icPcc3YgAbYPlIWXzTzg,2603
|
@@ -242,7 +246,7 @@ pulumi_vault/transit/get_decrypt.py,sha256=clmuO7uTEtaXya1Ttl_u1GF-LCRDY6CU8ZQ5M
|
|
242
246
|
pulumi_vault/transit/get_encrypt.py,sha256=bwswFt9Q4EBQQgh2A44LhQcFNQ4VzfQj_m4LULewPOQ,6790
|
243
247
|
pulumi_vault/transit/secret_backend_key.py,sha256=TC_VS84ka6Ij3h9gXMTg-9A5tMKj-DRPjrJGGNUyibc,53364
|
244
248
|
pulumi_vault/transit/secret_cache_config.py,sha256=699ZBN0s7SOFX2mgbHIV3pvKpZw92JXYhdzRKGXjc9U,12639
|
245
|
-
pulumi_vault-6.
|
246
|
-
pulumi_vault-6.
|
247
|
-
pulumi_vault-6.
|
248
|
-
pulumi_vault-6.
|
249
|
+
pulumi_vault-6.1.0.dist-info/METADATA,sha256=KO44ZZaW7wDvFRH0YJJxsZeHquKamU1AgP_Vrm4FH3A,4849
|
250
|
+
pulumi_vault-6.1.0.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
251
|
+
pulumi_vault-6.1.0.dist-info/top_level.txt,sha256=J7lAGvfexHc6T1EpDBGNKF0SXWURpmUhyzi9Nr5I61w,13
|
252
|
+
pulumi_vault-6.1.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|