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
@@ -8,8 +8,6 @@ import pulumi
|
|
8
8
|
import pulumi.runtime
|
9
9
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
10
10
|
from .. import _utilities
|
11
|
-
from . import outputs
|
12
|
-
from ._inputs import *
|
13
11
|
|
14
12
|
__all__ = ['SyncAssociationArgs', 'SyncAssociation']
|
15
13
|
|
@@ -105,25 +103,25 @@ class SyncAssociationArgs:
|
|
105
103
|
@pulumi.input_type
|
106
104
|
class _SyncAssociationState:
|
107
105
|
def __init__(__self__, *,
|
108
|
-
metadatas: Optional[pulumi.Input[Sequence[pulumi.Input['SyncAssociationMetadataArgs']]]] = None,
|
109
106
|
mount: Optional[pulumi.Input[str]] = None,
|
110
107
|
name: Optional[pulumi.Input[str]] = None,
|
111
108
|
namespace: Optional[pulumi.Input[str]] = None,
|
112
109
|
secret_name: Optional[pulumi.Input[str]] = None,
|
113
|
-
|
110
|
+
sync_status: Optional[pulumi.Input[str]] = None,
|
111
|
+
type: Optional[pulumi.Input[str]] = None,
|
112
|
+
updated_at: Optional[pulumi.Input[str]] = None):
|
114
113
|
"""
|
115
114
|
Input properties used for looking up and filtering SyncAssociation resources.
|
116
|
-
:param pulumi.Input[Sequence[pulumi.Input['SyncAssociationMetadataArgs']]] metadatas: Metadata for each subkey of the associated secret.
|
117
115
|
:param pulumi.Input[str] mount: Specifies the mount where the secret is located.
|
118
116
|
:param pulumi.Input[str] name: Specifies the name of the destination.
|
119
117
|
:param pulumi.Input[str] namespace: The namespace to provision the resource in.
|
120
118
|
The value should not contain leading or trailing forward slashes.
|
121
119
|
The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
|
122
120
|
:param pulumi.Input[str] secret_name: Specifies the name of the secret to synchronize.
|
121
|
+
:param pulumi.Input[str] sync_status: Specifies the status of the association (for eg. `SYNCED`).
|
123
122
|
:param pulumi.Input[str] type: Specifies the destination type.
|
123
|
+
:param pulumi.Input[str] updated_at: Duration string specifying when the secret was last updated.
|
124
124
|
"""
|
125
|
-
if metadatas is not None:
|
126
|
-
pulumi.set(__self__, "metadatas", metadatas)
|
127
125
|
if mount is not None:
|
128
126
|
pulumi.set(__self__, "mount", mount)
|
129
127
|
if name is not None:
|
@@ -132,20 +130,12 @@ class _SyncAssociationState:
|
|
132
130
|
pulumi.set(__self__, "namespace", namespace)
|
133
131
|
if secret_name is not None:
|
134
132
|
pulumi.set(__self__, "secret_name", secret_name)
|
133
|
+
if sync_status is not None:
|
134
|
+
pulumi.set(__self__, "sync_status", sync_status)
|
135
135
|
if type is not None:
|
136
136
|
pulumi.set(__self__, "type", type)
|
137
|
-
|
138
|
-
|
139
|
-
@pulumi.getter
|
140
|
-
def metadatas(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['SyncAssociationMetadataArgs']]]]:
|
141
|
-
"""
|
142
|
-
Metadata for each subkey of the associated secret.
|
143
|
-
"""
|
144
|
-
return pulumi.get(self, "metadatas")
|
145
|
-
|
146
|
-
@metadatas.setter
|
147
|
-
def metadatas(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['SyncAssociationMetadataArgs']]]]):
|
148
|
-
pulumi.set(self, "metadatas", value)
|
137
|
+
if updated_at is not None:
|
138
|
+
pulumi.set(__self__, "updated_at", updated_at)
|
149
139
|
|
150
140
|
@property
|
151
141
|
@pulumi.getter
|
@@ -197,6 +187,18 @@ class _SyncAssociationState:
|
|
197
187
|
def secret_name(self, value: Optional[pulumi.Input[str]]):
|
198
188
|
pulumi.set(self, "secret_name", value)
|
199
189
|
|
190
|
+
@property
|
191
|
+
@pulumi.getter(name="syncStatus")
|
192
|
+
def sync_status(self) -> Optional[pulumi.Input[str]]:
|
193
|
+
"""
|
194
|
+
Specifies the status of the association (for eg. `SYNCED`).
|
195
|
+
"""
|
196
|
+
return pulumi.get(self, "sync_status")
|
197
|
+
|
198
|
+
@sync_status.setter
|
199
|
+
def sync_status(self, value: Optional[pulumi.Input[str]]):
|
200
|
+
pulumi.set(self, "sync_status", value)
|
201
|
+
|
200
202
|
@property
|
201
203
|
@pulumi.getter
|
202
204
|
def type(self) -> Optional[pulumi.Input[str]]:
|
@@ -209,6 +211,18 @@ class _SyncAssociationState:
|
|
209
211
|
def type(self, value: Optional[pulumi.Input[str]]):
|
210
212
|
pulumi.set(self, "type", value)
|
211
213
|
|
214
|
+
@property
|
215
|
+
@pulumi.getter(name="updatedAt")
|
216
|
+
def updated_at(self) -> Optional[pulumi.Input[str]]:
|
217
|
+
"""
|
218
|
+
Duration string specifying when the secret was last updated.
|
219
|
+
"""
|
220
|
+
return pulumi.get(self, "updated_at")
|
221
|
+
|
222
|
+
@updated_at.setter
|
223
|
+
def updated_at(self, value: Optional[pulumi.Input[str]]):
|
224
|
+
pulumi.set(self, "updated_at", value)
|
225
|
+
|
212
226
|
|
213
227
|
class SyncAssociation(pulumi.CustomResource):
|
214
228
|
@overload
|
@@ -345,7 +359,8 @@ class SyncAssociation(pulumi.CustomResource):
|
|
345
359
|
if type is None and not opts.urn:
|
346
360
|
raise TypeError("Missing required property 'type'")
|
347
361
|
__props__.__dict__["type"] = type
|
348
|
-
__props__.__dict__["
|
362
|
+
__props__.__dict__["sync_status"] = None
|
363
|
+
__props__.__dict__["updated_at"] = None
|
349
364
|
super(SyncAssociation, __self__).__init__(
|
350
365
|
'vault:secrets/syncAssociation:SyncAssociation',
|
351
366
|
resource_name,
|
@@ -356,12 +371,13 @@ class SyncAssociation(pulumi.CustomResource):
|
|
356
371
|
def get(resource_name: str,
|
357
372
|
id: pulumi.Input[str],
|
358
373
|
opts: Optional[pulumi.ResourceOptions] = None,
|
359
|
-
metadatas: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['SyncAssociationMetadataArgs']]]]] = None,
|
360
374
|
mount: Optional[pulumi.Input[str]] = None,
|
361
375
|
name: Optional[pulumi.Input[str]] = None,
|
362
376
|
namespace: Optional[pulumi.Input[str]] = None,
|
363
377
|
secret_name: Optional[pulumi.Input[str]] = None,
|
364
|
-
|
378
|
+
sync_status: Optional[pulumi.Input[str]] = None,
|
379
|
+
type: Optional[pulumi.Input[str]] = None,
|
380
|
+
updated_at: Optional[pulumi.Input[str]] = None) -> 'SyncAssociation':
|
365
381
|
"""
|
366
382
|
Get an existing SyncAssociation resource's state with the given name, id, and optional extra
|
367
383
|
properties used to qualify the lookup.
|
@@ -369,35 +385,29 @@ class SyncAssociation(pulumi.CustomResource):
|
|
369
385
|
:param str resource_name: The unique name of the resulting resource.
|
370
386
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
371
387
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
372
|
-
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['SyncAssociationMetadataArgs']]]] metadatas: Metadata for each subkey of the associated secret.
|
373
388
|
:param pulumi.Input[str] mount: Specifies the mount where the secret is located.
|
374
389
|
:param pulumi.Input[str] name: Specifies the name of the destination.
|
375
390
|
:param pulumi.Input[str] namespace: The namespace to provision the resource in.
|
376
391
|
The value should not contain leading or trailing forward slashes.
|
377
392
|
The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
|
378
393
|
:param pulumi.Input[str] secret_name: Specifies the name of the secret to synchronize.
|
394
|
+
:param pulumi.Input[str] sync_status: Specifies the status of the association (for eg. `SYNCED`).
|
379
395
|
:param pulumi.Input[str] type: Specifies the destination type.
|
396
|
+
:param pulumi.Input[str] updated_at: Duration string specifying when the secret was last updated.
|
380
397
|
"""
|
381
398
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
382
399
|
|
383
400
|
__props__ = _SyncAssociationState.__new__(_SyncAssociationState)
|
384
401
|
|
385
|
-
__props__.__dict__["metadatas"] = metadatas
|
386
402
|
__props__.__dict__["mount"] = mount
|
387
403
|
__props__.__dict__["name"] = name
|
388
404
|
__props__.__dict__["namespace"] = namespace
|
389
405
|
__props__.__dict__["secret_name"] = secret_name
|
406
|
+
__props__.__dict__["sync_status"] = sync_status
|
390
407
|
__props__.__dict__["type"] = type
|
408
|
+
__props__.__dict__["updated_at"] = updated_at
|
391
409
|
return SyncAssociation(resource_name, opts=opts, __props__=__props__)
|
392
410
|
|
393
|
-
@property
|
394
|
-
@pulumi.getter
|
395
|
-
def metadatas(self) -> pulumi.Output[Sequence['outputs.SyncAssociationMetadata']]:
|
396
|
-
"""
|
397
|
-
Metadata for each subkey of the associated secret.
|
398
|
-
"""
|
399
|
-
return pulumi.get(self, "metadatas")
|
400
|
-
|
401
411
|
@property
|
402
412
|
@pulumi.getter
|
403
413
|
def mount(self) -> pulumi.Output[str]:
|
@@ -432,6 +442,14 @@ class SyncAssociation(pulumi.CustomResource):
|
|
432
442
|
"""
|
433
443
|
return pulumi.get(self, "secret_name")
|
434
444
|
|
445
|
+
@property
|
446
|
+
@pulumi.getter(name="syncStatus")
|
447
|
+
def sync_status(self) -> pulumi.Output[str]:
|
448
|
+
"""
|
449
|
+
Specifies the status of the association (for eg. `SYNCED`).
|
450
|
+
"""
|
451
|
+
return pulumi.get(self, "sync_status")
|
452
|
+
|
435
453
|
@property
|
436
454
|
@pulumi.getter
|
437
455
|
def type(self) -> pulumi.Output[str]:
|
@@ -440,3 +458,11 @@ class SyncAssociation(pulumi.CustomResource):
|
|
440
458
|
"""
|
441
459
|
return pulumi.get(self, "type")
|
442
460
|
|
461
|
+
@property
|
462
|
+
@pulumi.getter(name="updatedAt")
|
463
|
+
def updated_at(self) -> pulumi.Output[str]:
|
464
|
+
"""
|
465
|
+
Duration string specifying when the secret was last updated.
|
466
|
+
"""
|
467
|
+
return pulumi.get(self, "updated_at")
|
468
|
+
|
@@ -17,7 +17,6 @@ class SyncAwsDestinationArgs:
|
|
17
17
|
access_key_id: Optional[pulumi.Input[str]] = None,
|
18
18
|
custom_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
19
19
|
external_id: Optional[pulumi.Input[str]] = None,
|
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
|
region: Optional[pulumi.Input[str]] = None,
|
@@ -35,8 +34,6 @@ class SyncAwsDestinationArgs:
|
|
35
34
|
The field is mutable with no special condition, but users must be careful that the new value fits with the trust
|
36
35
|
relationship condition they set on AWS otherwise sync operations will start to fail due to client-side access
|
37
36
|
denied errors. Ignored if the `role_arn` field is empty.
|
38
|
-
:param pulumi.Input[str] granularity: Determines what level of information is synced as a distinct resource
|
39
|
-
at the destination. Supports `secret-path` and `secret-key`.
|
40
37
|
:param pulumi.Input[str] name: Unique name of the AWS destination.
|
41
38
|
:param pulumi.Input[str] namespace: The namespace to provision the resource in.
|
42
39
|
The value should not contain leading or trailing forward slashes.
|
@@ -61,8 +58,6 @@ class SyncAwsDestinationArgs:
|
|
61
58
|
pulumi.set(__self__, "custom_tags", custom_tags)
|
62
59
|
if external_id is not None:
|
63
60
|
pulumi.set(__self__, "external_id", external_id)
|
64
|
-
if granularity is not None:
|
65
|
-
pulumi.set(__self__, "granularity", granularity)
|
66
61
|
if name is not None:
|
67
62
|
pulumi.set(__self__, "name", name)
|
68
63
|
if namespace is not None:
|
@@ -118,19 +113,6 @@ class SyncAwsDestinationArgs:
|
|
118
113
|
def external_id(self, value: Optional[pulumi.Input[str]]):
|
119
114
|
pulumi.set(self, "external_id", value)
|
120
115
|
|
121
|
-
@property
|
122
|
-
@pulumi.getter
|
123
|
-
def granularity(self) -> Optional[pulumi.Input[str]]:
|
124
|
-
"""
|
125
|
-
Determines what level of information is synced as a distinct resource
|
126
|
-
at the destination. Supports `secret-path` and `secret-key`.
|
127
|
-
"""
|
128
|
-
return pulumi.get(self, "granularity")
|
129
|
-
|
130
|
-
@granularity.setter
|
131
|
-
def granularity(self, value: Optional[pulumi.Input[str]]):
|
132
|
-
pulumi.set(self, "granularity", value)
|
133
|
-
|
134
116
|
@property
|
135
117
|
@pulumi.getter
|
136
118
|
def name(self) -> Optional[pulumi.Input[str]]:
|
@@ -221,7 +203,6 @@ class _SyncAwsDestinationState:
|
|
221
203
|
access_key_id: Optional[pulumi.Input[str]] = None,
|
222
204
|
custom_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
223
205
|
external_id: Optional[pulumi.Input[str]] = None,
|
224
|
-
granularity: Optional[pulumi.Input[str]] = None,
|
225
206
|
name: Optional[pulumi.Input[str]] = None,
|
226
207
|
namespace: Optional[pulumi.Input[str]] = None,
|
227
208
|
region: Optional[pulumi.Input[str]] = None,
|
@@ -240,8 +221,6 @@ class _SyncAwsDestinationState:
|
|
240
221
|
The field is mutable with no special condition, but users must be careful that the new value fits with the trust
|
241
222
|
relationship condition they set on AWS otherwise sync operations will start to fail due to client-side access
|
242
223
|
denied errors. Ignored if the `role_arn` field is empty.
|
243
|
-
:param pulumi.Input[str] granularity: Determines what level of information is synced as a distinct resource
|
244
|
-
at the destination. Supports `secret-path` and `secret-key`.
|
245
224
|
:param pulumi.Input[str] name: Unique name of the AWS destination.
|
246
225
|
:param pulumi.Input[str] namespace: The namespace to provision the resource in.
|
247
226
|
The value should not contain leading or trailing forward slashes.
|
@@ -267,8 +246,6 @@ class _SyncAwsDestinationState:
|
|
267
246
|
pulumi.set(__self__, "custom_tags", custom_tags)
|
268
247
|
if external_id is not None:
|
269
248
|
pulumi.set(__self__, "external_id", external_id)
|
270
|
-
if granularity is not None:
|
271
|
-
pulumi.set(__self__, "granularity", granularity)
|
272
249
|
if name is not None:
|
273
250
|
pulumi.set(__self__, "name", name)
|
274
251
|
if namespace is not None:
|
@@ -326,19 +303,6 @@ class _SyncAwsDestinationState:
|
|
326
303
|
def external_id(self, value: Optional[pulumi.Input[str]]):
|
327
304
|
pulumi.set(self, "external_id", value)
|
328
305
|
|
329
|
-
@property
|
330
|
-
@pulumi.getter
|
331
|
-
def granularity(self) -> Optional[pulumi.Input[str]]:
|
332
|
-
"""
|
333
|
-
Determines what level of information is synced as a distinct resource
|
334
|
-
at the destination. Supports `secret-path` and `secret-key`.
|
335
|
-
"""
|
336
|
-
return pulumi.get(self, "granularity")
|
337
|
-
|
338
|
-
@granularity.setter
|
339
|
-
def granularity(self, value: Optional[pulumi.Input[str]]):
|
340
|
-
pulumi.set(self, "granularity", value)
|
341
|
-
|
342
306
|
@property
|
343
307
|
@pulumi.getter
|
344
308
|
def name(self) -> Optional[pulumi.Input[str]]:
|
@@ -443,7 +407,6 @@ class SyncAwsDestination(pulumi.CustomResource):
|
|
443
407
|
access_key_id: Optional[pulumi.Input[str]] = None,
|
444
408
|
custom_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
445
409
|
external_id: Optional[pulumi.Input[str]] = None,
|
446
|
-
granularity: Optional[pulumi.Input[str]] = None,
|
447
410
|
name: Optional[pulumi.Input[str]] = None,
|
448
411
|
namespace: Optional[pulumi.Input[str]] = None,
|
449
412
|
region: Optional[pulumi.Input[str]] = None,
|
@@ -491,8 +454,6 @@ class SyncAwsDestination(pulumi.CustomResource):
|
|
491
454
|
The field is mutable with no special condition, but users must be careful that the new value fits with the trust
|
492
455
|
relationship condition they set on AWS otherwise sync operations will start to fail due to client-side access
|
493
456
|
denied errors. Ignored if the `role_arn` field is empty.
|
494
|
-
:param pulumi.Input[str] granularity: Determines what level of information is synced as a distinct resource
|
495
|
-
at the destination. Supports `secret-path` and `secret-key`.
|
496
457
|
:param pulumi.Input[str] name: Unique name of the AWS destination.
|
497
458
|
:param pulumi.Input[str] namespace: The namespace to provision the resource in.
|
498
459
|
The value should not contain leading or trailing forward slashes.
|
@@ -564,7 +525,6 @@ class SyncAwsDestination(pulumi.CustomResource):
|
|
564
525
|
access_key_id: Optional[pulumi.Input[str]] = None,
|
565
526
|
custom_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
566
527
|
external_id: Optional[pulumi.Input[str]] = None,
|
567
|
-
granularity: Optional[pulumi.Input[str]] = None,
|
568
528
|
name: Optional[pulumi.Input[str]] = None,
|
569
529
|
namespace: Optional[pulumi.Input[str]] = None,
|
570
530
|
region: Optional[pulumi.Input[str]] = None,
|
@@ -583,7 +543,6 @@ class SyncAwsDestination(pulumi.CustomResource):
|
|
583
543
|
__props__.__dict__["access_key_id"] = access_key_id
|
584
544
|
__props__.__dict__["custom_tags"] = custom_tags
|
585
545
|
__props__.__dict__["external_id"] = external_id
|
586
|
-
__props__.__dict__["granularity"] = granularity
|
587
546
|
__props__.__dict__["name"] = name
|
588
547
|
__props__.__dict__["namespace"] = namespace
|
589
548
|
__props__.__dict__["region"] = region
|
@@ -606,7 +565,6 @@ class SyncAwsDestination(pulumi.CustomResource):
|
|
606
565
|
access_key_id: Optional[pulumi.Input[str]] = None,
|
607
566
|
custom_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
608
567
|
external_id: Optional[pulumi.Input[str]] = None,
|
609
|
-
granularity: Optional[pulumi.Input[str]] = None,
|
610
568
|
name: Optional[pulumi.Input[str]] = None,
|
611
569
|
namespace: Optional[pulumi.Input[str]] = None,
|
612
570
|
region: Optional[pulumi.Input[str]] = None,
|
@@ -630,8 +588,6 @@ class SyncAwsDestination(pulumi.CustomResource):
|
|
630
588
|
The field is mutable with no special condition, but users must be careful that the new value fits with the trust
|
631
589
|
relationship condition they set on AWS otherwise sync operations will start to fail due to client-side access
|
632
590
|
denied errors. Ignored if the `role_arn` field is empty.
|
633
|
-
:param pulumi.Input[str] granularity: Determines what level of information is synced as a distinct resource
|
634
|
-
at the destination. Supports `secret-path` and `secret-key`.
|
635
591
|
:param pulumi.Input[str] name: Unique name of the AWS destination.
|
636
592
|
:param pulumi.Input[str] namespace: The namespace to provision the resource in.
|
637
593
|
The value should not contain leading or trailing forward slashes.
|
@@ -658,7 +614,6 @@ class SyncAwsDestination(pulumi.CustomResource):
|
|
658
614
|
__props__.__dict__["access_key_id"] = access_key_id
|
659
615
|
__props__.__dict__["custom_tags"] = custom_tags
|
660
616
|
__props__.__dict__["external_id"] = external_id
|
661
|
-
__props__.__dict__["granularity"] = granularity
|
662
617
|
__props__.__dict__["name"] = name
|
663
618
|
__props__.__dict__["namespace"] = namespace
|
664
619
|
__props__.__dict__["region"] = region
|
@@ -698,15 +653,6 @@ class SyncAwsDestination(pulumi.CustomResource):
|
|
698
653
|
"""
|
699
654
|
return pulumi.get(self, "external_id")
|
700
655
|
|
701
|
-
@property
|
702
|
-
@pulumi.getter
|
703
|
-
def granularity(self) -> pulumi.Output[Optional[str]]:
|
704
|
-
"""
|
705
|
-
Determines what level of information is synced as a distinct resource
|
706
|
-
at the destination. Supports `secret-path` and `secret-key`.
|
707
|
-
"""
|
708
|
-
return pulumi.get(self, "granularity")
|
709
|
-
|
710
656
|
@property
|
711
657
|
@pulumi.getter
|
712
658
|
def name(self) -> pulumi.Output[str]:
|
@@ -18,7 +18,6 @@ class SyncAzureDestinationArgs:
|
|
18
18
|
client_secret: Optional[pulumi.Input[str]] = None,
|
19
19
|
cloud: Optional[pulumi.Input[str]] = None,
|
20
20
|
custom_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
21
|
-
granularity: Optional[pulumi.Input[str]] = None,
|
22
21
|
key_vault_uri: Optional[pulumi.Input[str]] = None,
|
23
22
|
name: Optional[pulumi.Input[str]] = None,
|
24
23
|
namespace: Optional[pulumi.Input[str]] = None,
|
@@ -34,8 +33,6 @@ class SyncAzureDestinationArgs:
|
|
34
33
|
variable.
|
35
34
|
:param pulumi.Input[str] cloud: Specifies a cloud for the client. The default is Azure Public Cloud.
|
36
35
|
:param pulumi.Input[Mapping[str, Any]] custom_tags: Custom tags to set on the secret managed at the destination.
|
37
|
-
:param pulumi.Input[str] granularity: Determines what level of information is synced as a distinct resource
|
38
|
-
at the destination. Supports `secret-path` and `secret-key`.
|
39
36
|
:param pulumi.Input[str] key_vault_uri: URI of an existing Azure Key Vault instance.
|
40
37
|
Can be omitted and directly provided to Vault using the `KEY_VAULT_URI` environment
|
41
38
|
variable.
|
@@ -57,8 +54,6 @@ class SyncAzureDestinationArgs:
|
|
57
54
|
pulumi.set(__self__, "cloud", cloud)
|
58
55
|
if custom_tags is not None:
|
59
56
|
pulumi.set(__self__, "custom_tags", custom_tags)
|
60
|
-
if granularity is not None:
|
61
|
-
pulumi.set(__self__, "granularity", granularity)
|
62
57
|
if key_vault_uri is not None:
|
63
58
|
pulumi.set(__self__, "key_vault_uri", key_vault_uri)
|
64
59
|
if name is not None:
|
@@ -122,19 +117,6 @@ class SyncAzureDestinationArgs:
|
|
122
117
|
def custom_tags(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
|
123
118
|
pulumi.set(self, "custom_tags", value)
|
124
119
|
|
125
|
-
@property
|
126
|
-
@pulumi.getter
|
127
|
-
def granularity(self) -> Optional[pulumi.Input[str]]:
|
128
|
-
"""
|
129
|
-
Determines what level of information is synced as a distinct resource
|
130
|
-
at the destination. Supports `secret-path` and `secret-key`.
|
131
|
-
"""
|
132
|
-
return pulumi.get(self, "granularity")
|
133
|
-
|
134
|
-
@granularity.setter
|
135
|
-
def granularity(self, value: Optional[pulumi.Input[str]]):
|
136
|
-
pulumi.set(self, "granularity", value)
|
137
|
-
|
138
120
|
@property
|
139
121
|
@pulumi.getter(name="keyVaultUri")
|
140
122
|
def key_vault_uri(self) -> Optional[pulumi.Input[str]]:
|
@@ -210,7 +192,6 @@ class _SyncAzureDestinationState:
|
|
210
192
|
client_secret: Optional[pulumi.Input[str]] = None,
|
211
193
|
cloud: Optional[pulumi.Input[str]] = None,
|
212
194
|
custom_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
213
|
-
granularity: Optional[pulumi.Input[str]] = None,
|
214
195
|
key_vault_uri: Optional[pulumi.Input[str]] = None,
|
215
196
|
name: Optional[pulumi.Input[str]] = None,
|
216
197
|
namespace: Optional[pulumi.Input[str]] = None,
|
@@ -227,8 +208,6 @@ class _SyncAzureDestinationState:
|
|
227
208
|
variable.
|
228
209
|
:param pulumi.Input[str] cloud: Specifies a cloud for the client. The default is Azure Public Cloud.
|
229
210
|
:param pulumi.Input[Mapping[str, Any]] custom_tags: Custom tags to set on the secret managed at the destination.
|
230
|
-
:param pulumi.Input[str] granularity: Determines what level of information is synced as a distinct resource
|
231
|
-
at the destination. Supports `secret-path` and `secret-key`.
|
232
211
|
:param pulumi.Input[str] key_vault_uri: URI of an existing Azure Key Vault instance.
|
233
212
|
Can be omitted and directly provided to Vault using the `KEY_VAULT_URI` environment
|
234
213
|
variable.
|
@@ -251,8 +230,6 @@ class _SyncAzureDestinationState:
|
|
251
230
|
pulumi.set(__self__, "cloud", cloud)
|
252
231
|
if custom_tags is not None:
|
253
232
|
pulumi.set(__self__, "custom_tags", custom_tags)
|
254
|
-
if granularity is not None:
|
255
|
-
pulumi.set(__self__, "granularity", granularity)
|
256
233
|
if key_vault_uri is not None:
|
257
234
|
pulumi.set(__self__, "key_vault_uri", key_vault_uri)
|
258
235
|
if name is not None:
|
@@ -318,19 +295,6 @@ class _SyncAzureDestinationState:
|
|
318
295
|
def custom_tags(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
|
319
296
|
pulumi.set(self, "custom_tags", value)
|
320
297
|
|
321
|
-
@property
|
322
|
-
@pulumi.getter
|
323
|
-
def granularity(self) -> Optional[pulumi.Input[str]]:
|
324
|
-
"""
|
325
|
-
Determines what level of information is synced as a distinct resource
|
326
|
-
at the destination. Supports `secret-path` and `secret-key`.
|
327
|
-
"""
|
328
|
-
return pulumi.get(self, "granularity")
|
329
|
-
|
330
|
-
@granularity.setter
|
331
|
-
def granularity(self, value: Optional[pulumi.Input[str]]):
|
332
|
-
pulumi.set(self, "granularity", value)
|
333
|
-
|
334
298
|
@property
|
335
299
|
@pulumi.getter(name="keyVaultUri")
|
336
300
|
def key_vault_uri(self) -> Optional[pulumi.Input[str]]:
|
@@ -420,7 +384,6 @@ class SyncAzureDestination(pulumi.CustomResource):
|
|
420
384
|
client_secret: Optional[pulumi.Input[str]] = None,
|
421
385
|
cloud: Optional[pulumi.Input[str]] = None,
|
422
386
|
custom_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
423
|
-
granularity: Optional[pulumi.Input[str]] = None,
|
424
387
|
key_vault_uri: Optional[pulumi.Input[str]] = None,
|
425
388
|
name: Optional[pulumi.Input[str]] = None,
|
426
389
|
namespace: Optional[pulumi.Input[str]] = None,
|
@@ -465,8 +428,6 @@ class SyncAzureDestination(pulumi.CustomResource):
|
|
465
428
|
variable.
|
466
429
|
:param pulumi.Input[str] cloud: Specifies a cloud for the client. The default is Azure Public Cloud.
|
467
430
|
:param pulumi.Input[Mapping[str, Any]] custom_tags: Custom tags to set on the secret managed at the destination.
|
468
|
-
:param pulumi.Input[str] granularity: Determines what level of information is synced as a distinct resource
|
469
|
-
at the destination. Supports `secret-path` and `secret-key`.
|
470
431
|
:param pulumi.Input[str] key_vault_uri: URI of an existing Azure Key Vault instance.
|
471
432
|
Can be omitted and directly provided to Vault using the `KEY_VAULT_URI` environment
|
472
433
|
variable.
|
@@ -533,7 +494,6 @@ class SyncAzureDestination(pulumi.CustomResource):
|
|
533
494
|
client_secret: Optional[pulumi.Input[str]] = None,
|
534
495
|
cloud: Optional[pulumi.Input[str]] = None,
|
535
496
|
custom_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
536
|
-
granularity: Optional[pulumi.Input[str]] = None,
|
537
497
|
key_vault_uri: Optional[pulumi.Input[str]] = None,
|
538
498
|
name: Optional[pulumi.Input[str]] = None,
|
539
499
|
namespace: Optional[pulumi.Input[str]] = None,
|
@@ -552,7 +512,6 @@ class SyncAzureDestination(pulumi.CustomResource):
|
|
552
512
|
__props__.__dict__["client_secret"] = None if client_secret is None else pulumi.Output.secret(client_secret)
|
553
513
|
__props__.__dict__["cloud"] = cloud
|
554
514
|
__props__.__dict__["custom_tags"] = custom_tags
|
555
|
-
__props__.__dict__["granularity"] = granularity
|
556
515
|
__props__.__dict__["key_vault_uri"] = key_vault_uri
|
557
516
|
__props__.__dict__["name"] = name
|
558
517
|
__props__.__dict__["namespace"] = namespace
|
@@ -575,7 +534,6 @@ class SyncAzureDestination(pulumi.CustomResource):
|
|
575
534
|
client_secret: Optional[pulumi.Input[str]] = None,
|
576
535
|
cloud: Optional[pulumi.Input[str]] = None,
|
577
536
|
custom_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
578
|
-
granularity: Optional[pulumi.Input[str]] = None,
|
579
537
|
key_vault_uri: Optional[pulumi.Input[str]] = None,
|
580
538
|
name: Optional[pulumi.Input[str]] = None,
|
581
539
|
namespace: Optional[pulumi.Input[str]] = None,
|
@@ -597,8 +555,6 @@ class SyncAzureDestination(pulumi.CustomResource):
|
|
597
555
|
variable.
|
598
556
|
:param pulumi.Input[str] cloud: Specifies a cloud for the client. The default is Azure Public Cloud.
|
599
557
|
:param pulumi.Input[Mapping[str, Any]] custom_tags: Custom tags to set on the secret managed at the destination.
|
600
|
-
:param pulumi.Input[str] granularity: Determines what level of information is synced as a distinct resource
|
601
|
-
at the destination. Supports `secret-path` and `secret-key`.
|
602
558
|
:param pulumi.Input[str] key_vault_uri: URI of an existing Azure Key Vault instance.
|
603
559
|
Can be omitted and directly provided to Vault using the `KEY_VAULT_URI` environment
|
604
560
|
variable.
|
@@ -621,7 +577,6 @@ class SyncAzureDestination(pulumi.CustomResource):
|
|
621
577
|
__props__.__dict__["client_secret"] = client_secret
|
622
578
|
__props__.__dict__["cloud"] = cloud
|
623
579
|
__props__.__dict__["custom_tags"] = custom_tags
|
624
|
-
__props__.__dict__["granularity"] = granularity
|
625
580
|
__props__.__dict__["key_vault_uri"] = key_vault_uri
|
626
581
|
__props__.__dict__["name"] = name
|
627
582
|
__props__.__dict__["namespace"] = namespace
|
@@ -666,15 +621,6 @@ class SyncAzureDestination(pulumi.CustomResource):
|
|
666
621
|
"""
|
667
622
|
return pulumi.get(self, "custom_tags")
|
668
623
|
|
669
|
-
@property
|
670
|
-
@pulumi.getter
|
671
|
-
def granularity(self) -> pulumi.Output[Optional[str]]:
|
672
|
-
"""
|
673
|
-
Determines what level of information is synced as a distinct resource
|
674
|
-
at the destination. Supports `secret-path` and `secret-key`.
|
675
|
-
"""
|
676
|
-
return pulumi.get(self, "granularity")
|
677
|
-
|
678
624
|
@property
|
679
625
|
@pulumi.getter(name="keyVaultUri")
|
680
626
|
def key_vault_uri(self) -> pulumi.Output[Optional[str]]:
|