pulumi-vault 6.1.0__py3-none-any.whl → 6.1.0a1711522308__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 -2
- pulumi_vault/kubernetes/secret_backend_role.py +25 -99
- pulumi_vault/mongodbatlas/secret_backend.py +6 -6
- pulumi_vault/mongodbatlas/secret_role.py +27 -27
- pulumi_vault/secrets/__init__.py +0 -2
- pulumi_vault/secrets/sync_association.py +58 -32
- pulumi_vault/secrets/sync_aws_destination.py +0 -54
- pulumi_vault/secrets/sync_azure_destination.py +0 -54
- pulumi_vault/secrets/sync_gcp_destination.py +0 -54
- pulumi_vault/secrets/sync_gh_destination.py +0 -54
- pulumi_vault/secrets/sync_vercel_destination.py +0 -54
- {pulumi_vault-6.1.0.dist-info → pulumi_vault-6.1.0a1711522308.dist-info}/METADATA +1 -1
- {pulumi_vault-6.1.0.dist-info → pulumi_vault-6.1.0a1711522308.dist-info}/RECORD +15 -19
- pulumi_vault/get_namespace.py +0 -225
- pulumi_vault/get_namespaces.py +0 -152
- pulumi_vault/secrets/_inputs.py +0 -80
- pulumi_vault/secrets/outputs.py +0 -89
- {pulumi_vault-6.1.0.dist-info → pulumi_vault-6.1.0a1711522308.dist-info}/WHEEL +0 -0
- {pulumi_vault-6.1.0.dist-info → pulumi_vault-6.1.0a1711522308.dist-info}/top_level.txt +0 -0
@@ -16,7 +16,6 @@ class SyncGcpDestinationArgs:
|
|
16
16
|
def __init__(__self__, *,
|
17
17
|
credentials: Optional[pulumi.Input[str]] = None,
|
18
18
|
custom_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
19
|
-
granularity: Optional[pulumi.Input[str]] = None,
|
20
19
|
name: Optional[pulumi.Input[str]] = None,
|
21
20
|
namespace: Optional[pulumi.Input[str]] = None,
|
22
21
|
project_id: Optional[pulumi.Input[str]] = None,
|
@@ -27,8 +26,6 @@ class SyncGcpDestinationArgs:
|
|
27
26
|
Can be omitted and directly provided to Vault using the `GOOGLE_APPLICATION_CREDENTIALS` environment
|
28
27
|
variable.
|
29
28
|
:param pulumi.Input[Mapping[str, Any]] custom_tags: Custom tags to set on the secret managed at the destination.
|
30
|
-
:param pulumi.Input[str] granularity: Determines what level of information is synced as a distinct resource
|
31
|
-
at the destination. Supports `secret-path` and `secret-key`.
|
32
29
|
:param pulumi.Input[str] name: Unique name of the GCP destination.
|
33
30
|
:param pulumi.Input[str] namespace: The namespace to provision the resource in.
|
34
31
|
The value should not contain leading or trailing forward slashes.
|
@@ -44,8 +41,6 @@ class SyncGcpDestinationArgs:
|
|
44
41
|
pulumi.set(__self__, "credentials", credentials)
|
45
42
|
if custom_tags is not None:
|
46
43
|
pulumi.set(__self__, "custom_tags", custom_tags)
|
47
|
-
if granularity is not None:
|
48
|
-
pulumi.set(__self__, "granularity", granularity)
|
49
44
|
if name is not None:
|
50
45
|
pulumi.set(__self__, "name", name)
|
51
46
|
if namespace is not None:
|
@@ -81,19 +76,6 @@ class SyncGcpDestinationArgs:
|
|
81
76
|
def custom_tags(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
|
82
77
|
pulumi.set(self, "custom_tags", value)
|
83
78
|
|
84
|
-
@property
|
85
|
-
@pulumi.getter
|
86
|
-
def granularity(self) -> Optional[pulumi.Input[str]]:
|
87
|
-
"""
|
88
|
-
Determines what level of information is synced as a distinct resource
|
89
|
-
at the destination. Supports `secret-path` and `secret-key`.
|
90
|
-
"""
|
91
|
-
return pulumi.get(self, "granularity")
|
92
|
-
|
93
|
-
@granularity.setter
|
94
|
-
def granularity(self, value: Optional[pulumi.Input[str]]):
|
95
|
-
pulumi.set(self, "granularity", value)
|
96
|
-
|
97
79
|
@property
|
98
80
|
@pulumi.getter
|
99
81
|
def name(self) -> Optional[pulumi.Input[str]]:
|
@@ -154,7 +136,6 @@ class _SyncGcpDestinationState:
|
|
154
136
|
def __init__(__self__, *,
|
155
137
|
credentials: Optional[pulumi.Input[str]] = None,
|
156
138
|
custom_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
157
|
-
granularity: Optional[pulumi.Input[str]] = None,
|
158
139
|
name: Optional[pulumi.Input[str]] = None,
|
159
140
|
namespace: Optional[pulumi.Input[str]] = None,
|
160
141
|
project_id: Optional[pulumi.Input[str]] = None,
|
@@ -166,8 +147,6 @@ class _SyncGcpDestinationState:
|
|
166
147
|
Can be omitted and directly provided to Vault using the `GOOGLE_APPLICATION_CREDENTIALS` environment
|
167
148
|
variable.
|
168
149
|
:param pulumi.Input[Mapping[str, Any]] custom_tags: Custom tags to set on the secret managed at the destination.
|
169
|
-
:param pulumi.Input[str] granularity: Determines what level of information is synced as a distinct resource
|
170
|
-
at the destination. Supports `secret-path` and `secret-key`.
|
171
150
|
:param pulumi.Input[str] name: Unique name of the GCP destination.
|
172
151
|
:param pulumi.Input[str] namespace: The namespace to provision the resource in.
|
173
152
|
The value should not contain leading or trailing forward slashes.
|
@@ -184,8 +163,6 @@ class _SyncGcpDestinationState:
|
|
184
163
|
pulumi.set(__self__, "credentials", credentials)
|
185
164
|
if custom_tags is not None:
|
186
165
|
pulumi.set(__self__, "custom_tags", custom_tags)
|
187
|
-
if granularity is not None:
|
188
|
-
pulumi.set(__self__, "granularity", granularity)
|
189
166
|
if name is not None:
|
190
167
|
pulumi.set(__self__, "name", name)
|
191
168
|
if namespace is not None:
|
@@ -223,19 +200,6 @@ class _SyncGcpDestinationState:
|
|
223
200
|
def custom_tags(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
|
224
201
|
pulumi.set(self, "custom_tags", value)
|
225
202
|
|
226
|
-
@property
|
227
|
-
@pulumi.getter
|
228
|
-
def granularity(self) -> Optional[pulumi.Input[str]]:
|
229
|
-
"""
|
230
|
-
Determines what level of information is synced as a distinct resource
|
231
|
-
at the destination. Supports `secret-path` and `secret-key`.
|
232
|
-
"""
|
233
|
-
return pulumi.get(self, "granularity")
|
234
|
-
|
235
|
-
@granularity.setter
|
236
|
-
def granularity(self, value: Optional[pulumi.Input[str]]):
|
237
|
-
pulumi.set(self, "granularity", value)
|
238
|
-
|
239
203
|
@property
|
240
204
|
@pulumi.getter
|
241
205
|
def name(self) -> Optional[pulumi.Input[str]]:
|
@@ -310,7 +274,6 @@ class SyncGcpDestination(pulumi.CustomResource):
|
|
310
274
|
opts: Optional[pulumi.ResourceOptions] = None,
|
311
275
|
credentials: Optional[pulumi.Input[str]] = None,
|
312
276
|
custom_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
313
|
-
granularity: Optional[pulumi.Input[str]] = None,
|
314
277
|
name: Optional[pulumi.Input[str]] = None,
|
315
278
|
namespace: Optional[pulumi.Input[str]] = None,
|
316
279
|
project_id: Optional[pulumi.Input[str]] = None,
|
@@ -348,8 +311,6 @@ class SyncGcpDestination(pulumi.CustomResource):
|
|
348
311
|
Can be omitted and directly provided to Vault using the `GOOGLE_APPLICATION_CREDENTIALS` environment
|
349
312
|
variable.
|
350
313
|
:param pulumi.Input[Mapping[str, Any]] custom_tags: Custom tags to set on the secret managed at the destination.
|
351
|
-
:param pulumi.Input[str] granularity: Determines what level of information is synced as a distinct resource
|
352
|
-
at the destination. Supports `secret-path` and `secret-key`.
|
353
314
|
:param pulumi.Input[str] name: Unique name of the GCP destination.
|
354
315
|
:param pulumi.Input[str] namespace: The namespace to provision the resource in.
|
355
316
|
The value should not contain leading or trailing forward slashes.
|
@@ -410,7 +371,6 @@ class SyncGcpDestination(pulumi.CustomResource):
|
|
410
371
|
opts: Optional[pulumi.ResourceOptions] = None,
|
411
372
|
credentials: Optional[pulumi.Input[str]] = None,
|
412
373
|
custom_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
413
|
-
granularity: Optional[pulumi.Input[str]] = None,
|
414
374
|
name: Optional[pulumi.Input[str]] = None,
|
415
375
|
namespace: Optional[pulumi.Input[str]] = None,
|
416
376
|
project_id: Optional[pulumi.Input[str]] = None,
|
@@ -426,7 +386,6 @@ class SyncGcpDestination(pulumi.CustomResource):
|
|
426
386
|
|
427
387
|
__props__.__dict__["credentials"] = None if credentials is None else pulumi.Output.secret(credentials)
|
428
388
|
__props__.__dict__["custom_tags"] = custom_tags
|
429
|
-
__props__.__dict__["granularity"] = granularity
|
430
389
|
__props__.__dict__["name"] = name
|
431
390
|
__props__.__dict__["namespace"] = namespace
|
432
391
|
__props__.__dict__["project_id"] = project_id
|
@@ -446,7 +405,6 @@ class SyncGcpDestination(pulumi.CustomResource):
|
|
446
405
|
opts: Optional[pulumi.ResourceOptions] = None,
|
447
406
|
credentials: Optional[pulumi.Input[str]] = None,
|
448
407
|
custom_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
449
|
-
granularity: Optional[pulumi.Input[str]] = None,
|
450
408
|
name: Optional[pulumi.Input[str]] = None,
|
451
409
|
namespace: Optional[pulumi.Input[str]] = None,
|
452
410
|
project_id: Optional[pulumi.Input[str]] = None,
|
@@ -463,8 +421,6 @@ class SyncGcpDestination(pulumi.CustomResource):
|
|
463
421
|
Can be omitted and directly provided to Vault using the `GOOGLE_APPLICATION_CREDENTIALS` environment
|
464
422
|
variable.
|
465
423
|
:param pulumi.Input[Mapping[str, Any]] custom_tags: Custom tags to set on the secret managed at the destination.
|
466
|
-
:param pulumi.Input[str] granularity: Determines what level of information is synced as a distinct resource
|
467
|
-
at the destination. Supports `secret-path` and `secret-key`.
|
468
424
|
:param pulumi.Input[str] name: Unique name of the GCP destination.
|
469
425
|
:param pulumi.Input[str] namespace: The namespace to provision the resource in.
|
470
426
|
The value should not contain leading or trailing forward slashes.
|
@@ -483,7 +439,6 @@ class SyncGcpDestination(pulumi.CustomResource):
|
|
483
439
|
|
484
440
|
__props__.__dict__["credentials"] = credentials
|
485
441
|
__props__.__dict__["custom_tags"] = custom_tags
|
486
|
-
__props__.__dict__["granularity"] = granularity
|
487
442
|
__props__.__dict__["name"] = name
|
488
443
|
__props__.__dict__["namespace"] = namespace
|
489
444
|
__props__.__dict__["project_id"] = project_id
|
@@ -509,15 +464,6 @@ class SyncGcpDestination(pulumi.CustomResource):
|
|
509
464
|
"""
|
510
465
|
return pulumi.get(self, "custom_tags")
|
511
466
|
|
512
|
-
@property
|
513
|
-
@pulumi.getter
|
514
|
-
def granularity(self) -> pulumi.Output[Optional[str]]:
|
515
|
-
"""
|
516
|
-
Determines what level of information is synced as a distinct resource
|
517
|
-
at the destination. Supports `secret-path` and `secret-key`.
|
518
|
-
"""
|
519
|
-
return pulumi.get(self, "granularity")
|
520
|
-
|
521
467
|
@property
|
522
468
|
@pulumi.getter
|
523
469
|
def name(self) -> pulumi.Output[str]:
|
@@ -16,7 +16,6 @@ class SyncGhDestinationArgs:
|
|
16
16
|
def __init__(__self__, *,
|
17
17
|
access_token: Optional[pulumi.Input[str]] = None,
|
18
18
|
app_name: Optional[pulumi.Input[str]] = None,
|
19
|
-
granularity: Optional[pulumi.Input[str]] = None,
|
20
19
|
installation_id: Optional[pulumi.Input[int]] = None,
|
21
20
|
name: Optional[pulumi.Input[str]] = None,
|
22
21
|
namespace: Optional[pulumi.Input[str]] = None,
|
@@ -31,8 +30,6 @@ class SyncGhDestinationArgs:
|
|
31
30
|
:param pulumi.Input[str] app_name: The user-defined name of the GitHub App configuration. This is a reference to the name used
|
32
31
|
on the new endpoint when configuring the GitHub app on the Vault Server. Can be modified.
|
33
32
|
Takes precedence over the `access_token` field.
|
34
|
-
:param pulumi.Input[str] granularity: Determines what level of information is synced as a distinct resource
|
35
|
-
at the destination. Supports `secret-path` and `secret-key`.
|
36
33
|
:param pulumi.Input[int] installation_id: The ID of the installation generated by GitHub when the app referenced by the `app_name`
|
37
34
|
was installed in the user’s GitHub account. Can be modified. Necessary if the `app_name` field is also provided.
|
38
35
|
:param pulumi.Input[str] name: Unique name of the GitHub destination.
|
@@ -52,8 +49,6 @@ class SyncGhDestinationArgs:
|
|
52
49
|
pulumi.set(__self__, "access_token", access_token)
|
53
50
|
if app_name is not None:
|
54
51
|
pulumi.set(__self__, "app_name", app_name)
|
55
|
-
if granularity is not None:
|
56
|
-
pulumi.set(__self__, "granularity", granularity)
|
57
52
|
if installation_id is not None:
|
58
53
|
pulumi.set(__self__, "installation_id", installation_id)
|
59
54
|
if name is not None:
|
@@ -95,19 +90,6 @@ class SyncGhDestinationArgs:
|
|
95
90
|
def app_name(self, value: Optional[pulumi.Input[str]]):
|
96
91
|
pulumi.set(self, "app_name", value)
|
97
92
|
|
98
|
-
@property
|
99
|
-
@pulumi.getter
|
100
|
-
def granularity(self) -> Optional[pulumi.Input[str]]:
|
101
|
-
"""
|
102
|
-
Determines what level of information is synced as a distinct resource
|
103
|
-
at the destination. Supports `secret-path` and `secret-key`.
|
104
|
-
"""
|
105
|
-
return pulumi.get(self, "granularity")
|
106
|
-
|
107
|
-
@granularity.setter
|
108
|
-
def granularity(self, value: Optional[pulumi.Input[str]]):
|
109
|
-
pulumi.set(self, "granularity", value)
|
110
|
-
|
111
93
|
@property
|
112
94
|
@pulumi.getter(name="installationId")
|
113
95
|
def installation_id(self) -> Optional[pulumi.Input[int]]:
|
@@ -194,7 +176,6 @@ class _SyncGhDestinationState:
|
|
194
176
|
def __init__(__self__, *,
|
195
177
|
access_token: Optional[pulumi.Input[str]] = None,
|
196
178
|
app_name: Optional[pulumi.Input[str]] = None,
|
197
|
-
granularity: Optional[pulumi.Input[str]] = None,
|
198
179
|
installation_id: Optional[pulumi.Input[int]] = None,
|
199
180
|
name: Optional[pulumi.Input[str]] = None,
|
200
181
|
namespace: Optional[pulumi.Input[str]] = None,
|
@@ -210,8 +191,6 @@ class _SyncGhDestinationState:
|
|
210
191
|
:param pulumi.Input[str] app_name: The user-defined name of the GitHub App configuration. This is a reference to the name used
|
211
192
|
on the new endpoint when configuring the GitHub app on the Vault Server. Can be modified.
|
212
193
|
Takes precedence over the `access_token` field.
|
213
|
-
:param pulumi.Input[str] granularity: Determines what level of information is synced as a distinct resource
|
214
|
-
at the destination. Supports `secret-path` and `secret-key`.
|
215
194
|
:param pulumi.Input[int] installation_id: The ID of the installation generated by GitHub when the app referenced by the `app_name`
|
216
195
|
was installed in the user’s GitHub account. Can be modified. Necessary if the `app_name` field is also provided.
|
217
196
|
:param pulumi.Input[str] name: Unique name of the GitHub destination.
|
@@ -232,8 +211,6 @@ class _SyncGhDestinationState:
|
|
232
211
|
pulumi.set(__self__, "access_token", access_token)
|
233
212
|
if app_name is not None:
|
234
213
|
pulumi.set(__self__, "app_name", app_name)
|
235
|
-
if granularity is not None:
|
236
|
-
pulumi.set(__self__, "granularity", granularity)
|
237
214
|
if installation_id is not None:
|
238
215
|
pulumi.set(__self__, "installation_id", installation_id)
|
239
216
|
if name is not None:
|
@@ -277,19 +254,6 @@ class _SyncGhDestinationState:
|
|
277
254
|
def app_name(self, value: Optional[pulumi.Input[str]]):
|
278
255
|
pulumi.set(self, "app_name", value)
|
279
256
|
|
280
|
-
@property
|
281
|
-
@pulumi.getter
|
282
|
-
def granularity(self) -> Optional[pulumi.Input[str]]:
|
283
|
-
"""
|
284
|
-
Determines what level of information is synced as a distinct resource
|
285
|
-
at the destination. Supports `secret-path` and `secret-key`.
|
286
|
-
"""
|
287
|
-
return pulumi.get(self, "granularity")
|
288
|
-
|
289
|
-
@granularity.setter
|
290
|
-
def granularity(self, value: Optional[pulumi.Input[str]]):
|
291
|
-
pulumi.set(self, "granularity", value)
|
292
|
-
|
293
257
|
@property
|
294
258
|
@pulumi.getter(name="installationId")
|
295
259
|
def installation_id(self) -> Optional[pulumi.Input[int]]:
|
@@ -390,7 +354,6 @@ class SyncGhDestination(pulumi.CustomResource):
|
|
390
354
|
opts: Optional[pulumi.ResourceOptions] = None,
|
391
355
|
access_token: Optional[pulumi.Input[str]] = None,
|
392
356
|
app_name: Optional[pulumi.Input[str]] = None,
|
393
|
-
granularity: Optional[pulumi.Input[str]] = None,
|
394
357
|
installation_id: Optional[pulumi.Input[int]] = None,
|
395
358
|
name: Optional[pulumi.Input[str]] = None,
|
396
359
|
namespace: Optional[pulumi.Input[str]] = None,
|
@@ -430,8 +393,6 @@ class SyncGhDestination(pulumi.CustomResource):
|
|
430
393
|
:param pulumi.Input[str] app_name: The user-defined name of the GitHub App configuration. This is a reference to the name used
|
431
394
|
on the new endpoint when configuring the GitHub app on the Vault Server. Can be modified.
|
432
395
|
Takes precedence over the `access_token` field.
|
433
|
-
:param pulumi.Input[str] granularity: Determines what level of information is synced as a distinct resource
|
434
|
-
at the destination. Supports `secret-path` and `secret-key`.
|
435
396
|
:param pulumi.Input[int] installation_id: The ID of the installation generated by GitHub when the app referenced by the `app_name`
|
436
397
|
was installed in the user’s GitHub account. Can be modified. Necessary if the `app_name` field is also provided.
|
437
398
|
:param pulumi.Input[str] name: Unique name of the GitHub destination.
|
@@ -494,7 +455,6 @@ class SyncGhDestination(pulumi.CustomResource):
|
|
494
455
|
opts: Optional[pulumi.ResourceOptions] = None,
|
495
456
|
access_token: Optional[pulumi.Input[str]] = None,
|
496
457
|
app_name: Optional[pulumi.Input[str]] = None,
|
497
|
-
granularity: Optional[pulumi.Input[str]] = None,
|
498
458
|
installation_id: Optional[pulumi.Input[int]] = None,
|
499
459
|
name: Optional[pulumi.Input[str]] = None,
|
500
460
|
namespace: Optional[pulumi.Input[str]] = None,
|
@@ -512,7 +472,6 @@ class SyncGhDestination(pulumi.CustomResource):
|
|
512
472
|
|
513
473
|
__props__.__dict__["access_token"] = None if access_token is None else pulumi.Output.secret(access_token)
|
514
474
|
__props__.__dict__["app_name"] = app_name
|
515
|
-
__props__.__dict__["granularity"] = granularity
|
516
475
|
__props__.__dict__["installation_id"] = installation_id
|
517
476
|
__props__.__dict__["name"] = name
|
518
477
|
__props__.__dict__["namespace"] = namespace
|
@@ -534,7 +493,6 @@ class SyncGhDestination(pulumi.CustomResource):
|
|
534
493
|
opts: Optional[pulumi.ResourceOptions] = None,
|
535
494
|
access_token: Optional[pulumi.Input[str]] = None,
|
536
495
|
app_name: Optional[pulumi.Input[str]] = None,
|
537
|
-
granularity: Optional[pulumi.Input[str]] = None,
|
538
496
|
installation_id: Optional[pulumi.Input[int]] = None,
|
539
497
|
name: Optional[pulumi.Input[str]] = None,
|
540
498
|
namespace: Optional[pulumi.Input[str]] = None,
|
@@ -555,8 +513,6 @@ class SyncGhDestination(pulumi.CustomResource):
|
|
555
513
|
:param pulumi.Input[str] app_name: The user-defined name of the GitHub App configuration. This is a reference to the name used
|
556
514
|
on the new endpoint when configuring the GitHub app on the Vault Server. Can be modified.
|
557
515
|
Takes precedence over the `access_token` field.
|
558
|
-
:param pulumi.Input[str] granularity: Determines what level of information is synced as a distinct resource
|
559
|
-
at the destination. Supports `secret-path` and `secret-key`.
|
560
516
|
:param pulumi.Input[int] installation_id: The ID of the installation generated by GitHub when the app referenced by the `app_name`
|
561
517
|
was installed in the user’s GitHub account. Can be modified. Necessary if the `app_name` field is also provided.
|
562
518
|
:param pulumi.Input[str] name: Unique name of the GitHub destination.
|
@@ -579,7 +535,6 @@ class SyncGhDestination(pulumi.CustomResource):
|
|
579
535
|
|
580
536
|
__props__.__dict__["access_token"] = access_token
|
581
537
|
__props__.__dict__["app_name"] = app_name
|
582
|
-
__props__.__dict__["granularity"] = granularity
|
583
538
|
__props__.__dict__["installation_id"] = installation_id
|
584
539
|
__props__.__dict__["name"] = name
|
585
540
|
__props__.__dict__["namespace"] = namespace
|
@@ -609,15 +564,6 @@ class SyncGhDestination(pulumi.CustomResource):
|
|
609
564
|
"""
|
610
565
|
return pulumi.get(self, "app_name")
|
611
566
|
|
612
|
-
@property
|
613
|
-
@pulumi.getter
|
614
|
-
def granularity(self) -> pulumi.Output[Optional[str]]:
|
615
|
-
"""
|
616
|
-
Determines what level of information is synced as a distinct resource
|
617
|
-
at the destination. Supports `secret-path` and `secret-key`.
|
618
|
-
"""
|
619
|
-
return pulumi.get(self, "granularity")
|
620
|
-
|
621
567
|
@property
|
622
568
|
@pulumi.getter(name="installationId")
|
623
569
|
def installation_id(self) -> pulumi.Output[Optional[int]]:
|
@@ -17,7 +17,6 @@ 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,
|
21
20
|
name: Optional[pulumi.Input[str]] = None,
|
22
21
|
namespace: Optional[pulumi.Input[str]] = None,
|
23
22
|
secret_name_template: Optional[pulumi.Input[str]] = None,
|
@@ -29,8 +28,6 @@ class SyncVercelDestinationArgs:
|
|
29
28
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] deployment_environments: Deployment environments where the environment variables
|
30
29
|
are available. Accepts `development`, `preview` and `production`.
|
31
30
|
: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`.
|
34
31
|
:param pulumi.Input[str] name: Unique name of the GitHub destination.
|
35
32
|
:param pulumi.Input[str] namespace: The namespace to provision the resource in.
|
36
33
|
The value should not contain leading or trailing forward slashes.
|
@@ -42,8 +39,6 @@ class SyncVercelDestinationArgs:
|
|
42
39
|
pulumi.set(__self__, "access_token", access_token)
|
43
40
|
pulumi.set(__self__, "deployment_environments", deployment_environments)
|
44
41
|
pulumi.set(__self__, "project_id", project_id)
|
45
|
-
if granularity is not None:
|
46
|
-
pulumi.set(__self__, "granularity", granularity)
|
47
42
|
if name is not None:
|
48
43
|
pulumi.set(__self__, "name", name)
|
49
44
|
if namespace is not None:
|
@@ -91,19 +86,6 @@ class SyncVercelDestinationArgs:
|
|
91
86
|
def project_id(self, value: pulumi.Input[str]):
|
92
87
|
pulumi.set(self, "project_id", value)
|
93
88
|
|
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
|
-
|
107
89
|
@property
|
108
90
|
@pulumi.getter
|
109
91
|
def name(self) -> Optional[pulumi.Input[str]]:
|
@@ -161,7 +143,6 @@ class _SyncVercelDestinationState:
|
|
161
143
|
def __init__(__self__, *,
|
162
144
|
access_token: Optional[pulumi.Input[str]] = None,
|
163
145
|
deployment_environments: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
164
|
-
granularity: Optional[pulumi.Input[str]] = None,
|
165
146
|
name: Optional[pulumi.Input[str]] = None,
|
166
147
|
namespace: Optional[pulumi.Input[str]] = None,
|
167
148
|
project_id: Optional[pulumi.Input[str]] = None,
|
@@ -174,8 +155,6 @@ class _SyncVercelDestinationState:
|
|
174
155
|
variables.
|
175
156
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] deployment_environments: Deployment environments where the environment variables
|
176
157
|
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`.
|
179
158
|
:param pulumi.Input[str] name: Unique name of the GitHub destination.
|
180
159
|
:param pulumi.Input[str] namespace: The namespace to provision the resource in.
|
181
160
|
The value should not contain leading or trailing forward slashes.
|
@@ -190,8 +169,6 @@ class _SyncVercelDestinationState:
|
|
190
169
|
pulumi.set(__self__, "access_token", access_token)
|
191
170
|
if deployment_environments is not None:
|
192
171
|
pulumi.set(__self__, "deployment_environments", deployment_environments)
|
193
|
-
if granularity is not None:
|
194
|
-
pulumi.set(__self__, "granularity", granularity)
|
195
172
|
if name is not None:
|
196
173
|
pulumi.set(__self__, "name", name)
|
197
174
|
if namespace is not None:
|
@@ -231,19 +208,6 @@ class _SyncVercelDestinationState:
|
|
231
208
|
def deployment_environments(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
232
209
|
pulumi.set(self, "deployment_environments", value)
|
233
210
|
|
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
|
-
|
247
211
|
@property
|
248
212
|
@pulumi.getter
|
249
213
|
def name(self) -> Optional[pulumi.Input[str]]:
|
@@ -327,7 +291,6 @@ class SyncVercelDestination(pulumi.CustomResource):
|
|
327
291
|
opts: Optional[pulumi.ResourceOptions] = None,
|
328
292
|
access_token: Optional[pulumi.Input[str]] = None,
|
329
293
|
deployment_environments: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
330
|
-
granularity: Optional[pulumi.Input[str]] = None,
|
331
294
|
name: Optional[pulumi.Input[str]] = None,
|
332
295
|
namespace: Optional[pulumi.Input[str]] = None,
|
333
296
|
project_id: Optional[pulumi.Input[str]] = None,
|
@@ -368,8 +331,6 @@ class SyncVercelDestination(pulumi.CustomResource):
|
|
368
331
|
variables.
|
369
332
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] deployment_environments: Deployment environments where the environment variables
|
370
333
|
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`.
|
373
334
|
:param pulumi.Input[str] name: Unique name of the GitHub destination.
|
374
335
|
:param pulumi.Input[str] namespace: The namespace to provision the resource in.
|
375
336
|
The value should not contain leading or trailing forward slashes.
|
@@ -430,7 +391,6 @@ class SyncVercelDestination(pulumi.CustomResource):
|
|
430
391
|
opts: Optional[pulumi.ResourceOptions] = None,
|
431
392
|
access_token: Optional[pulumi.Input[str]] = None,
|
432
393
|
deployment_environments: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
433
|
-
granularity: Optional[pulumi.Input[str]] = None,
|
434
394
|
name: Optional[pulumi.Input[str]] = None,
|
435
395
|
namespace: Optional[pulumi.Input[str]] = None,
|
436
396
|
project_id: Optional[pulumi.Input[str]] = None,
|
@@ -451,7 +411,6 @@ class SyncVercelDestination(pulumi.CustomResource):
|
|
451
411
|
if deployment_environments is None and not opts.urn:
|
452
412
|
raise TypeError("Missing required property 'deployment_environments'")
|
453
413
|
__props__.__dict__["deployment_environments"] = deployment_environments
|
454
|
-
__props__.__dict__["granularity"] = granularity
|
455
414
|
__props__.__dict__["name"] = name
|
456
415
|
__props__.__dict__["namespace"] = namespace
|
457
416
|
if project_id is None and not opts.urn:
|
@@ -474,7 +433,6 @@ class SyncVercelDestination(pulumi.CustomResource):
|
|
474
433
|
opts: Optional[pulumi.ResourceOptions] = None,
|
475
434
|
access_token: Optional[pulumi.Input[str]] = None,
|
476
435
|
deployment_environments: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
477
|
-
granularity: Optional[pulumi.Input[str]] = None,
|
478
436
|
name: Optional[pulumi.Input[str]] = None,
|
479
437
|
namespace: Optional[pulumi.Input[str]] = None,
|
480
438
|
project_id: Optional[pulumi.Input[str]] = None,
|
@@ -492,8 +450,6 @@ class SyncVercelDestination(pulumi.CustomResource):
|
|
492
450
|
variables.
|
493
451
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] deployment_environments: Deployment environments where the environment variables
|
494
452
|
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`.
|
497
453
|
:param pulumi.Input[str] name: Unique name of the GitHub destination.
|
498
454
|
:param pulumi.Input[str] namespace: The namespace to provision the resource in.
|
499
455
|
The value should not contain leading or trailing forward slashes.
|
@@ -510,7 +466,6 @@ class SyncVercelDestination(pulumi.CustomResource):
|
|
510
466
|
|
511
467
|
__props__.__dict__["access_token"] = access_token
|
512
468
|
__props__.__dict__["deployment_environments"] = deployment_environments
|
513
|
-
__props__.__dict__["granularity"] = granularity
|
514
469
|
__props__.__dict__["name"] = name
|
515
470
|
__props__.__dict__["namespace"] = namespace
|
516
471
|
__props__.__dict__["project_id"] = project_id
|
@@ -537,15 +492,6 @@ class SyncVercelDestination(pulumi.CustomResource):
|
|
537
492
|
"""
|
538
493
|
return pulumi.get(self, "deployment_environments")
|
539
494
|
|
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
|
-
|
549
495
|
@property
|
550
496
|
@pulumi.getter
|
551
497
|
def name(self) -> pulumi.Output[str]:
|
@@ -1,4 +1,4 @@
|
|
1
|
-
pulumi_vault/__init__.py,sha256=
|
1
|
+
pulumi_vault/__init__.py,sha256=20hSXphspKnu64jSbwnoy1_xrgfSb8DP6-jEQMl9Oh8,30974
|
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,8 +8,6 @@ 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
|
13
11
|
pulumi_vault/get_nomad_access_token.py,sha256=MbTLuIrIQBffZHeu7oNFjTLdtTvSxxpm8sEsVhUqCpA,7389
|
14
12
|
pulumi_vault/get_policy_document.py,sha256=CpRsIuUtkC2noxBydZ23VbUsb-K40VuhdX8e5qhc7h0,5136
|
15
13
|
pulumi_vault/get_raft_autopilot_state.py,sha256=llhnccs5zBbkIKLncZP6ek5DzLFjFJuXSWl-AaibUwk,10007
|
@@ -148,7 +146,7 @@ pulumi_vault/kubernetes/get_auth_backend_config.py,sha256=-B9KKJOJD4Zl9ztTOt5uQ0
|
|
148
146
|
pulumi_vault/kubernetes/get_auth_backend_role.py,sha256=Zv58F4W8UPq3xNr7WbldlEQOndvYG-geGaW1VAp8W9o,21357
|
149
147
|
pulumi_vault/kubernetes/get_service_account_token.py,sha256=Tf4P5WwgmXNjRSZpUSFlJ_XRUhKGGwanXuVd-6rPElI,13847
|
150
148
|
pulumi_vault/kubernetes/secret_backend.py,sha256=6_Ntv1YB9ksxOYipWldIorrU0VJccLvtR0wO5Ioy5fw,50850
|
151
|
-
pulumi_vault/kubernetes/secret_backend_role.py,sha256=
|
149
|
+
pulumi_vault/kubernetes/secret_backend_role.py,sha256=acqhpY34IarhcOwW6BlRiTd0UTkpdtPVG8IAZspFcBY,50157
|
152
150
|
pulumi_vault/kv/__init__.py,sha256=dF29_Z4F3d4CnpcCvjG4CWZx6VkI272d4zFV9fgX_xY,553
|
153
151
|
pulumi_vault/kv/_inputs.py,sha256=n--n3d7nkYYifFXynV5hFOGK2iNbGdTIKuGup9BptSo,3628
|
154
152
|
pulumi_vault/kv/get_secret.py,sha256=g_GyICsYsL-O4OenGTMhJMirpxBXeXqblHpgz8bGqM4,7962
|
@@ -175,8 +173,8 @@ pulumi_vault/managed/_inputs.py,sha256=JoiulN7-SUQ8lQ-v7r12T7hdv5uPP1t0T0Zy4TsRM
|
|
175
173
|
pulumi_vault/managed/keys.py,sha256=1MLaMX-lecUqI_WCoebYfjP_t2kvX7fHE1sIuXWmpac,14395
|
176
174
|
pulumi_vault/managed/outputs.py,sha256=KemXbw8tLPYQrzOcXjj-SdXxVR0yYtRJF1Ecuja26Lc,25252
|
177
175
|
pulumi_vault/mongodbatlas/__init__.py,sha256=rFFnsDK7I_OQI879BRJsmBI38wbeas33DdgA375K6ho,326
|
178
|
-
pulumi_vault/mongodbatlas/secret_backend.py,sha256=
|
179
|
-
pulumi_vault/mongodbatlas/secret_role.py,sha256=
|
176
|
+
pulumi_vault/mongodbatlas/secret_backend.py,sha256=1IJuBE1yamLOeMAVD4mqD7JfRd6I98RV0FeVTJmYjGw,16315
|
177
|
+
pulumi_vault/mongodbatlas/secret_role.py,sha256=zWu-1YhetYjbNXY9uK9VZNvc9Si6J49APFR36pWFVOk,31758
|
180
178
|
pulumi_vault/okta/__init__.py,sha256=XjquFz2tppASPCFGZ9YE51_cVH69eGAiToFyehc0wcY,409
|
181
179
|
pulumi_vault/okta/_inputs.py,sha256=Tqwi9iCF7LNdkguWQ1VRyYU_63WlCL9MP8qs0I30wsw,3527
|
182
180
|
pulumi_vault/okta/auth_backend.py,sha256=S8fyu1GxElLJXmV5E4KptSlI6tvLl_m4qEZrtpJVOg8,38494
|
@@ -212,17 +210,15 @@ pulumi_vault/rabbitmq/secret_backend_role.py,sha256=Xm91nXb107ZfjZElNoQQwo7v-LMG
|
|
212
210
|
pulumi_vault/saml/__init__.py,sha256=xsw9vLzgRVpWx9FOuKA-TpYcz6uP_pARoK68kHx5VD0,330
|
213
211
|
pulumi_vault/saml/auth_backend.py,sha256=9dbV1e4xDM7XQ3k4Cd0RsCDL6yratapr-l6-bYD-of0,33638
|
214
212
|
pulumi_vault/saml/auth_backend_role.py,sha256=L18USJbLAZJmuwmYakWg3WFMFgcyN0tLgBfbnWqAD8E,55597
|
215
|
-
pulumi_vault/secrets/__init__.py,sha256=
|
216
|
-
pulumi_vault/secrets/
|
217
|
-
pulumi_vault/secrets/
|
218
|
-
pulumi_vault/secrets/
|
219
|
-
pulumi_vault/secrets/sync_aws_destination.py,sha256=qibdxV2ncd4ATJXfrKLZOoZVmp94Dq8HtodcafkCrw4,38691
|
220
|
-
pulumi_vault/secrets/sync_azure_destination.py,sha256=zJLmPo-ihDMqBQaLKk0Be0mjQehy1Fa9LqdW8p4x3SE,32430
|
213
|
+
pulumi_vault/secrets/__init__.py,sha256=pv_Q08BNnplGs-YP9khPKThrWlCNa-TeKFXcPYznBk0,544
|
214
|
+
pulumi_vault/secrets/sync_association.py,sha256=Oo06AINjBlZizoWHeMzqQHWDNUwIPO1G79AFUrO1ZT0,18776
|
215
|
+
pulumi_vault/secrets/sync_aws_destination.py,sha256=nmNGP0s1o35bA8jo0j0naM70fUcjZXoYlLhZ3gehOSQ,36080
|
216
|
+
pulumi_vault/secrets/sync_azure_destination.py,sha256=FJvvmPMvOchd04ftJUi4gojIJKzUM61xcPfUoAoweR8,29826
|
221
217
|
pulumi_vault/secrets/sync_config.py,sha256=W7YeUn4XLNT_gd5tLg50CZF5KYmuA1qGWt9Gm4JcP64,12446
|
222
|
-
pulumi_vault/secrets/sync_gcp_destination.py,sha256=
|
223
|
-
pulumi_vault/secrets/sync_gh_destination.py,sha256=
|
218
|
+
pulumi_vault/secrets/sync_gcp_destination.py,sha256=nufHCN24IUQLgtX70Q18cId1A4nTKgd_aORW6QHobQY,23697
|
219
|
+
pulumi_vault/secrets/sync_gh_destination.py,sha256=hLKg8Ln1vqStOmBzvW04UecXdgyL9wnJpIg0vzxNKTo,29701
|
224
220
|
pulumi_vault/secrets/sync_github_apps.py,sha256=zjZIAXjtLJ9fyhNc7vIsjtaYE2XMi9Lvs16tjxzXplM,15288
|
225
|
-
pulumi_vault/secrets/sync_vercel_destination.py,sha256=
|
221
|
+
pulumi_vault/secrets/sync_vercel_destination.py,sha256=TRSDG8qOOYEHxEyt_rTmIAHmjxz5roR-gdbi4gP4O4Q,24164
|
226
222
|
pulumi_vault/ssh/__init__.py,sha256=kSaEW40BMdCU_LlCcy8YIBYROxHLbXfyHdaMRDm76i0,382
|
227
223
|
pulumi_vault/ssh/_inputs.py,sha256=VtpYaFbcwVd9LdyVFH2OB9A9DkhkOX7cDzOTEEG9tDg,2971
|
228
224
|
pulumi_vault/ssh/outputs.py,sha256=Zytp0bxP9Vl2LWUs9-GNH45icPcc3YgAbYPlIWXzTzg,2603
|
@@ -246,7 +242,7 @@ pulumi_vault/transit/get_decrypt.py,sha256=clmuO7uTEtaXya1Ttl_u1GF-LCRDY6CU8ZQ5M
|
|
246
242
|
pulumi_vault/transit/get_encrypt.py,sha256=bwswFt9Q4EBQQgh2A44LhQcFNQ4VzfQj_m4LULewPOQ,6790
|
247
243
|
pulumi_vault/transit/secret_backend_key.py,sha256=TC_VS84ka6Ij3h9gXMTg-9A5tMKj-DRPjrJGGNUyibc,53364
|
248
244
|
pulumi_vault/transit/secret_cache_config.py,sha256=699ZBN0s7SOFX2mgbHIV3pvKpZw92JXYhdzRKGXjc9U,12639
|
249
|
-
pulumi_vault-6.1.
|
250
|
-
pulumi_vault-6.1.
|
251
|
-
pulumi_vault-6.1.
|
252
|
-
pulumi_vault-6.1.
|
245
|
+
pulumi_vault-6.1.0a1711522308.dist-info/METADATA,sha256=0Skpp-eUscVrK3r774rajr93vhf9MNnUNB1tGsSsvdY,4860
|
246
|
+
pulumi_vault-6.1.0a1711522308.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
247
|
+
pulumi_vault-6.1.0a1711522308.dist-info/top_level.txt,sha256=J7lAGvfexHc6T1EpDBGNKF0SXWURpmUhyzi9Nr5I61w,13
|
248
|
+
pulumi_vault-6.1.0a1711522308.dist-info/RECORD,,
|