pulumi-vault 6.2.0a1715237402__py3-none-any.whl → 6.2.0a1715339765__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_vault/aws/auth_backend_login.py +0 -8
- pulumi_vault/provider.py +0 -8
- pulumi_vault/terraformcloud/secret_backend.py +0 -52
- pulumi_vault/terraformcloud/secret_creds.py +0 -13
- pulumi_vault/terraformcloud/secret_role.py +0 -65
- {pulumi_vault-6.2.0a1715237402.dist-info → pulumi_vault-6.2.0a1715339765.dist-info}/METADATA +1 -1
- {pulumi_vault-6.2.0a1715237402.dist-info → pulumi_vault-6.2.0a1715339765.dist-info}/RECORD +9 -9
- {pulumi_vault-6.2.0a1715237402.dist-info → pulumi_vault-6.2.0a1715339765.dist-info}/WHEEL +0 -0
- {pulumi_vault-6.2.0a1715237402.dist-info → pulumi_vault-6.2.0a1715339765.dist-info}/top_level.txt +0 -0
@@ -270,7 +270,6 @@ class _AuthBackendLoginState:
|
|
270
270
|
authenticate with. Can be retrieved from the EC2 metadata server.
|
271
271
|
:param pulumi.Input[int] lease_duration: The duration in seconds the token will be valid, relative
|
272
272
|
to the time in `lease_start_time`.
|
273
|
-
:param pulumi.Input[str] lease_start_time: Time at which the lease was read, using the clock of the system where Terraform was running
|
274
273
|
:param pulumi.Input[Mapping[str, Any]] metadata: A map of information returned by the Vault server about the
|
275
274
|
authentication used to generate this token.
|
276
275
|
:param pulumi.Input[str] namespace: The namespace to provision the resource in.
|
@@ -461,9 +460,6 @@ class _AuthBackendLoginState:
|
|
461
460
|
@property
|
462
461
|
@pulumi.getter(name="leaseStartTime")
|
463
462
|
def lease_start_time(self) -> Optional[pulumi.Input[str]]:
|
464
|
-
"""
|
465
|
-
Time at which the lease was read, using the clock of the system where Terraform was running
|
466
|
-
"""
|
467
463
|
return pulumi.get(self, "lease_start_time")
|
468
464
|
|
469
465
|
@lease_start_time.setter
|
@@ -754,7 +750,6 @@ class AuthBackendLogin(pulumi.CustomResource):
|
|
754
750
|
authenticate with. Can be retrieved from the EC2 metadata server.
|
755
751
|
:param pulumi.Input[int] lease_duration: The duration in seconds the token will be valid, relative
|
756
752
|
to the time in `lease_start_time`.
|
757
|
-
:param pulumi.Input[str] lease_start_time: Time at which the lease was read, using the clock of the system where Terraform was running
|
758
753
|
:param pulumi.Input[Mapping[str, Any]] metadata: A map of information returned by the Vault server about the
|
759
754
|
authentication used to generate this token.
|
760
755
|
:param pulumi.Input[str] namespace: The namespace to provision the resource in.
|
@@ -891,9 +886,6 @@ class AuthBackendLogin(pulumi.CustomResource):
|
|
891
886
|
@property
|
892
887
|
@pulumi.getter(name="leaseStartTime")
|
893
888
|
def lease_start_time(self) -> pulumi.Output[str]:
|
894
|
-
"""
|
895
|
-
Time at which the lease was read, using the clock of the system where Terraform was running
|
896
|
-
"""
|
897
889
|
return pulumi.get(self, "lease_start_time")
|
898
890
|
|
899
891
|
@property
|
pulumi_vault/provider.py
CHANGED
@@ -49,7 +49,6 @@ class ProviderArgs:
|
|
49
49
|
The set of arguments for constructing a Provider resource.
|
50
50
|
:param pulumi.Input[str] address: URL of the root of the target Vault server.
|
51
51
|
:param pulumi.Input[str] token: Token to use to authenticate to Vault.
|
52
|
-
:param pulumi.Input[str] add_address_to_env: If true, adds the value of the `address` argument to the Terraform process environment.
|
53
52
|
:param pulumi.Input['ProviderAuthLoginArgs'] auth_login: Login to vault with an existing auth method using auth/<mount>/login
|
54
53
|
:param pulumi.Input['ProviderAuthLoginAwsArgs'] auth_login_aws: Login to vault using the AWS method
|
55
54
|
:param pulumi.Input['ProviderAuthLoginAzureArgs'] auth_login_azure: Login to vault using the azure method
|
@@ -174,9 +173,6 @@ class ProviderArgs:
|
|
174
173
|
@property
|
175
174
|
@pulumi.getter(name="addAddressToEnv")
|
176
175
|
def add_address_to_env(self) -> Optional[pulumi.Input[str]]:
|
177
|
-
"""
|
178
|
-
If true, adds the value of the `address` argument to the Terraform process environment.
|
179
|
-
"""
|
180
176
|
return pulumi.get(self, "add_address_to_env")
|
181
177
|
|
182
178
|
@add_address_to_env.setter
|
@@ -556,7 +552,6 @@ class Provider(pulumi.ProviderResource):
|
|
556
552
|
|
557
553
|
:param str resource_name: The name of the resource.
|
558
554
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
559
|
-
:param pulumi.Input[str] add_address_to_env: If true, adds the value of the `address` argument to the Terraform process environment.
|
560
555
|
:param pulumi.Input[str] address: URL of the root of the target Vault server.
|
561
556
|
:param pulumi.Input[pulumi.InputType['ProviderAuthLoginArgs']] auth_login: Login to vault with an existing auth method using auth/<mount>/login
|
562
557
|
:param pulumi.Input[pulumi.InputType['ProviderAuthLoginAwsArgs']] auth_login_aws: Login to vault using the AWS method
|
@@ -703,9 +698,6 @@ class Provider(pulumi.ProviderResource):
|
|
703
698
|
@property
|
704
699
|
@pulumi.getter(name="addAddressToEnv")
|
705
700
|
def add_address_to_env(self) -> pulumi.Output[Optional[str]]:
|
706
|
-
"""
|
707
|
-
If true, adds the value of the `address` argument to the Terraform process environment.
|
708
|
-
"""
|
709
701
|
return pulumi.get(self, "add_address_to_env")
|
710
702
|
|
711
703
|
@property
|
@@ -25,9 +25,6 @@ class SecretBackendArgs:
|
|
25
25
|
token: Optional[pulumi.Input[str]] = None):
|
26
26
|
"""
|
27
27
|
The set of arguments for constructing a SecretBackend resource.
|
28
|
-
:param pulumi.Input[str] address: Specifies the address of the Terraform Cloud instance, provided as "host:port" like "127.0.0.1:8500".
|
29
|
-
:param pulumi.Input[str] backend: Unique name of the Vault Terraform Cloud mount to configure
|
30
|
-
:param pulumi.Input[str] base_path: Specifies the base path for the Terraform Cloud or Enterprise API.
|
31
28
|
:param pulumi.Input[int] default_lease_ttl_seconds: The default TTL for credentials issued by this backend.
|
32
29
|
:param pulumi.Input[str] description: A human-friendly description for this backend.
|
33
30
|
:param pulumi.Input[bool] disable_remount: If set, opts out of mount migration on path updates.
|
@@ -38,7 +35,6 @@ class SecretBackendArgs:
|
|
38
35
|
The value should not contain leading or trailing forward slashes.
|
39
36
|
The `namespace` is always relative to the provider's configured namespace.
|
40
37
|
*Available only for Vault Enterprise*.
|
41
|
-
:param pulumi.Input[str] token: Specifies the Terraform Cloud access token to use.
|
42
38
|
"""
|
43
39
|
if address is not None:
|
44
40
|
pulumi.set(__self__, "address", address)
|
@@ -62,9 +58,6 @@ class SecretBackendArgs:
|
|
62
58
|
@property
|
63
59
|
@pulumi.getter
|
64
60
|
def address(self) -> Optional[pulumi.Input[str]]:
|
65
|
-
"""
|
66
|
-
Specifies the address of the Terraform Cloud instance, provided as "host:port" like "127.0.0.1:8500".
|
67
|
-
"""
|
68
61
|
return pulumi.get(self, "address")
|
69
62
|
|
70
63
|
@address.setter
|
@@ -74,9 +67,6 @@ class SecretBackendArgs:
|
|
74
67
|
@property
|
75
68
|
@pulumi.getter
|
76
69
|
def backend(self) -> Optional[pulumi.Input[str]]:
|
77
|
-
"""
|
78
|
-
Unique name of the Vault Terraform Cloud mount to configure
|
79
|
-
"""
|
80
70
|
return pulumi.get(self, "backend")
|
81
71
|
|
82
72
|
@backend.setter
|
@@ -86,9 +76,6 @@ class SecretBackendArgs:
|
|
86
76
|
@property
|
87
77
|
@pulumi.getter(name="basePath")
|
88
78
|
def base_path(self) -> Optional[pulumi.Input[str]]:
|
89
|
-
"""
|
90
|
-
Specifies the base path for the Terraform Cloud or Enterprise API.
|
91
|
-
"""
|
92
79
|
return pulumi.get(self, "base_path")
|
93
80
|
|
94
81
|
@base_path.setter
|
@@ -163,9 +150,6 @@ class SecretBackendArgs:
|
|
163
150
|
@property
|
164
151
|
@pulumi.getter
|
165
152
|
def token(self) -> Optional[pulumi.Input[str]]:
|
166
|
-
"""
|
167
|
-
Specifies the Terraform Cloud access token to use.
|
168
|
-
"""
|
169
153
|
return pulumi.get(self, "token")
|
170
154
|
|
171
155
|
@token.setter
|
@@ -187,9 +171,6 @@ class _SecretBackendState:
|
|
187
171
|
token: Optional[pulumi.Input[str]] = None):
|
188
172
|
"""
|
189
173
|
Input properties used for looking up and filtering SecretBackend resources.
|
190
|
-
:param pulumi.Input[str] address: Specifies the address of the Terraform Cloud instance, provided as "host:port" like "127.0.0.1:8500".
|
191
|
-
:param pulumi.Input[str] backend: Unique name of the Vault Terraform Cloud mount to configure
|
192
|
-
:param pulumi.Input[str] base_path: Specifies the base path for the Terraform Cloud or Enterprise API.
|
193
174
|
:param pulumi.Input[int] default_lease_ttl_seconds: The default TTL for credentials issued by this backend.
|
194
175
|
:param pulumi.Input[str] description: A human-friendly description for this backend.
|
195
176
|
:param pulumi.Input[bool] disable_remount: If set, opts out of mount migration on path updates.
|
@@ -200,7 +181,6 @@ class _SecretBackendState:
|
|
200
181
|
The value should not contain leading or trailing forward slashes.
|
201
182
|
The `namespace` is always relative to the provider's configured namespace.
|
202
183
|
*Available only for Vault Enterprise*.
|
203
|
-
:param pulumi.Input[str] token: Specifies the Terraform Cloud access token to use.
|
204
184
|
"""
|
205
185
|
if address is not None:
|
206
186
|
pulumi.set(__self__, "address", address)
|
@@ -224,9 +204,6 @@ class _SecretBackendState:
|
|
224
204
|
@property
|
225
205
|
@pulumi.getter
|
226
206
|
def address(self) -> Optional[pulumi.Input[str]]:
|
227
|
-
"""
|
228
|
-
Specifies the address of the Terraform Cloud instance, provided as "host:port" like "127.0.0.1:8500".
|
229
|
-
"""
|
230
207
|
return pulumi.get(self, "address")
|
231
208
|
|
232
209
|
@address.setter
|
@@ -236,9 +213,6 @@ class _SecretBackendState:
|
|
236
213
|
@property
|
237
214
|
@pulumi.getter
|
238
215
|
def backend(self) -> Optional[pulumi.Input[str]]:
|
239
|
-
"""
|
240
|
-
Unique name of the Vault Terraform Cloud mount to configure
|
241
|
-
"""
|
242
216
|
return pulumi.get(self, "backend")
|
243
217
|
|
244
218
|
@backend.setter
|
@@ -248,9 +222,6 @@ class _SecretBackendState:
|
|
248
222
|
@property
|
249
223
|
@pulumi.getter(name="basePath")
|
250
224
|
def base_path(self) -> Optional[pulumi.Input[str]]:
|
251
|
-
"""
|
252
|
-
Specifies the base path for the Terraform Cloud or Enterprise API.
|
253
|
-
"""
|
254
225
|
return pulumi.get(self, "base_path")
|
255
226
|
|
256
227
|
@base_path.setter
|
@@ -325,9 +296,6 @@ class _SecretBackendState:
|
|
325
296
|
@property
|
326
297
|
@pulumi.getter
|
327
298
|
def token(self) -> Optional[pulumi.Input[str]]:
|
328
|
-
"""
|
329
|
-
Specifies the Terraform Cloud access token to use.
|
330
|
-
"""
|
331
299
|
return pulumi.get(self, "token")
|
332
300
|
|
333
301
|
@token.setter
|
@@ -373,9 +341,6 @@ class SecretBackend(pulumi.CustomResource):
|
|
373
341
|
|
374
342
|
:param str resource_name: The name of the resource.
|
375
343
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
376
|
-
:param pulumi.Input[str] address: Specifies the address of the Terraform Cloud instance, provided as "host:port" like "127.0.0.1:8500".
|
377
|
-
:param pulumi.Input[str] backend: Unique name of the Vault Terraform Cloud mount to configure
|
378
|
-
:param pulumi.Input[str] base_path: Specifies the base path for the Terraform Cloud or Enterprise API.
|
379
344
|
:param pulumi.Input[int] default_lease_ttl_seconds: The default TTL for credentials issued by this backend.
|
380
345
|
:param pulumi.Input[str] description: A human-friendly description for this backend.
|
381
346
|
:param pulumi.Input[bool] disable_remount: If set, opts out of mount migration on path updates.
|
@@ -386,7 +351,6 @@ class SecretBackend(pulumi.CustomResource):
|
|
386
351
|
The value should not contain leading or trailing forward slashes.
|
387
352
|
The `namespace` is always relative to the provider's configured namespace.
|
388
353
|
*Available only for Vault Enterprise*.
|
389
|
-
:param pulumi.Input[str] token: Specifies the Terraform Cloud access token to use.
|
390
354
|
"""
|
391
355
|
...
|
392
356
|
@overload
|
@@ -485,9 +449,6 @@ class SecretBackend(pulumi.CustomResource):
|
|
485
449
|
:param str resource_name: The unique name of the resulting resource.
|
486
450
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
487
451
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
488
|
-
:param pulumi.Input[str] address: Specifies the address of the Terraform Cloud instance, provided as "host:port" like "127.0.0.1:8500".
|
489
|
-
:param pulumi.Input[str] backend: Unique name of the Vault Terraform Cloud mount to configure
|
490
|
-
:param pulumi.Input[str] base_path: Specifies the base path for the Terraform Cloud or Enterprise API.
|
491
452
|
:param pulumi.Input[int] default_lease_ttl_seconds: The default TTL for credentials issued by this backend.
|
492
453
|
:param pulumi.Input[str] description: A human-friendly description for this backend.
|
493
454
|
:param pulumi.Input[bool] disable_remount: If set, opts out of mount migration on path updates.
|
@@ -498,7 +459,6 @@ class SecretBackend(pulumi.CustomResource):
|
|
498
459
|
The value should not contain leading or trailing forward slashes.
|
499
460
|
The `namespace` is always relative to the provider's configured namespace.
|
500
461
|
*Available only for Vault Enterprise*.
|
501
|
-
:param pulumi.Input[str] token: Specifies the Terraform Cloud access token to use.
|
502
462
|
"""
|
503
463
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
504
464
|
|
@@ -518,25 +478,16 @@ class SecretBackend(pulumi.CustomResource):
|
|
518
478
|
@property
|
519
479
|
@pulumi.getter
|
520
480
|
def address(self) -> pulumi.Output[Optional[str]]:
|
521
|
-
"""
|
522
|
-
Specifies the address of the Terraform Cloud instance, provided as "host:port" like "127.0.0.1:8500".
|
523
|
-
"""
|
524
481
|
return pulumi.get(self, "address")
|
525
482
|
|
526
483
|
@property
|
527
484
|
@pulumi.getter
|
528
485
|
def backend(self) -> pulumi.Output[Optional[str]]:
|
529
|
-
"""
|
530
|
-
Unique name of the Vault Terraform Cloud mount to configure
|
531
|
-
"""
|
532
486
|
return pulumi.get(self, "backend")
|
533
487
|
|
534
488
|
@property
|
535
489
|
@pulumi.getter(name="basePath")
|
536
490
|
def base_path(self) -> pulumi.Output[Optional[str]]:
|
537
|
-
"""
|
538
|
-
Specifies the base path for the Terraform Cloud or Enterprise API.
|
539
|
-
"""
|
540
491
|
return pulumi.get(self, "base_path")
|
541
492
|
|
542
493
|
@property
|
@@ -587,8 +538,5 @@ class SecretBackend(pulumi.CustomResource):
|
|
587
538
|
@property
|
588
539
|
@pulumi.getter
|
589
540
|
def token(self) -> pulumi.Output[Optional[str]]:
|
590
|
-
"""
|
591
|
-
Specifies the Terraform Cloud access token to use.
|
592
|
-
"""
|
593
541
|
return pulumi.get(self, "token")
|
594
542
|
|
@@ -19,7 +19,6 @@ class SecretCredsArgs:
|
|
19
19
|
namespace: Optional[pulumi.Input[str]] = None):
|
20
20
|
"""
|
21
21
|
The set of arguments for constructing a SecretCreds resource.
|
22
|
-
:param pulumi.Input[str] backend: Terraform Cloud secret backend to generate tokens from
|
23
22
|
:param pulumi.Input[str] role: Name of the role.
|
24
23
|
:param pulumi.Input[str] namespace: The namespace to provision the resource in.
|
25
24
|
The value should not contain leading or trailing forward slashes.
|
@@ -34,9 +33,6 @@ class SecretCredsArgs:
|
|
34
33
|
@property
|
35
34
|
@pulumi.getter
|
36
35
|
def backend(self) -> pulumi.Input[str]:
|
37
|
-
"""
|
38
|
-
Terraform Cloud secret backend to generate tokens from
|
39
|
-
"""
|
40
36
|
return pulumi.get(self, "backend")
|
41
37
|
|
42
38
|
@backend.setter
|
@@ -84,7 +80,6 @@ class _SecretCredsState:
|
|
84
80
|
token_id: Optional[pulumi.Input[str]] = None):
|
85
81
|
"""
|
86
82
|
Input properties used for looking up and filtering SecretCreds resources.
|
87
|
-
:param pulumi.Input[str] backend: Terraform Cloud secret backend to generate tokens from
|
88
83
|
:param pulumi.Input[str] lease_id: The lease associated with the token. Only user tokens will have a
|
89
84
|
Vault lease associated with them.
|
90
85
|
:param pulumi.Input[str] namespace: The namespace to provision the resource in.
|
@@ -119,9 +114,6 @@ class _SecretCredsState:
|
|
119
114
|
@property
|
120
115
|
@pulumi.getter
|
121
116
|
def backend(self) -> Optional[pulumi.Input[str]]:
|
122
|
-
"""
|
123
|
-
Terraform Cloud secret backend to generate tokens from
|
124
|
-
"""
|
125
117
|
return pulumi.get(self, "backend")
|
126
118
|
|
127
119
|
@backend.setter
|
@@ -251,7 +243,6 @@ class SecretCreds(pulumi.CustomResource):
|
|
251
243
|
|
252
244
|
:param str resource_name: The name of the resource.
|
253
245
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
254
|
-
:param pulumi.Input[str] backend: Terraform Cloud secret backend to generate tokens from
|
255
246
|
:param pulumi.Input[str] namespace: The namespace to provision the resource in.
|
256
247
|
The value should not contain leading or trailing forward slashes.
|
257
248
|
The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
|
@@ -351,7 +342,6 @@ class SecretCreds(pulumi.CustomResource):
|
|
351
342
|
:param str resource_name: The unique name of the resulting resource.
|
352
343
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
353
344
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
354
|
-
:param pulumi.Input[str] backend: Terraform Cloud secret backend to generate tokens from
|
355
345
|
:param pulumi.Input[str] lease_id: The lease associated with the token. Only user tokens will have a
|
356
346
|
Vault lease associated with them.
|
357
347
|
:param pulumi.Input[str] namespace: The namespace to provision the resource in.
|
@@ -383,9 +373,6 @@ class SecretCreds(pulumi.CustomResource):
|
|
383
373
|
@property
|
384
374
|
@pulumi.getter
|
385
375
|
def backend(self) -> pulumi.Output[str]:
|
386
|
-
"""
|
387
|
-
Terraform Cloud secret backend to generate tokens from
|
388
|
-
"""
|
389
376
|
return pulumi.get(self, "backend")
|
390
377
|
|
391
378
|
@property
|
@@ -24,17 +24,12 @@ class SecretRoleArgs:
|
|
24
24
|
user_id: Optional[pulumi.Input[str]] = None):
|
25
25
|
"""
|
26
26
|
The set of arguments for constructing a SecretRole resource.
|
27
|
-
:param pulumi.Input[str] backend: The path of the Terraform Cloud Secret Backend the role belongs to.
|
28
27
|
:param pulumi.Input[int] max_ttl: Maximum TTL for leases associated with this role, in seconds.
|
29
|
-
:param pulumi.Input[str] name: The name of an existing role against which to create this Terraform Cloud credential
|
30
28
|
:param pulumi.Input[str] namespace: The namespace to provision the resource in.
|
31
29
|
The value should not contain leading or trailing forward slashes.
|
32
30
|
The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
|
33
31
|
*Available only for Vault Enterprise*.
|
34
|
-
:param pulumi.Input[str] organization: Name of the Terraform Cloud or Enterprise organization
|
35
|
-
:param pulumi.Input[str] team_id: ID of the Terraform Cloud or Enterprise team under organization (e.g., settings/teams/team-xxxxxxxxxxxxx)
|
36
32
|
:param pulumi.Input[int] ttl: Specifies the TTL for this role.
|
37
|
-
:param pulumi.Input[str] user_id: ID of the Terraform Cloud or Enterprise user (e.g., user-xxxxxxxxxxxxxxxx)
|
38
33
|
"""
|
39
34
|
if backend is not None:
|
40
35
|
pulumi.set(__self__, "backend", backend)
|
@@ -56,9 +51,6 @@ class SecretRoleArgs:
|
|
56
51
|
@property
|
57
52
|
@pulumi.getter
|
58
53
|
def backend(self) -> Optional[pulumi.Input[str]]:
|
59
|
-
"""
|
60
|
-
The path of the Terraform Cloud Secret Backend the role belongs to.
|
61
|
-
"""
|
62
54
|
return pulumi.get(self, "backend")
|
63
55
|
|
64
56
|
@backend.setter
|
@@ -80,9 +72,6 @@ class SecretRoleArgs:
|
|
80
72
|
@property
|
81
73
|
@pulumi.getter
|
82
74
|
def name(self) -> Optional[pulumi.Input[str]]:
|
83
|
-
"""
|
84
|
-
The name of an existing role against which to create this Terraform Cloud credential
|
85
|
-
"""
|
86
75
|
return pulumi.get(self, "name")
|
87
76
|
|
88
77
|
@name.setter
|
@@ -107,9 +96,6 @@ class SecretRoleArgs:
|
|
107
96
|
@property
|
108
97
|
@pulumi.getter
|
109
98
|
def organization(self) -> Optional[pulumi.Input[str]]:
|
110
|
-
"""
|
111
|
-
Name of the Terraform Cloud or Enterprise organization
|
112
|
-
"""
|
113
99
|
return pulumi.get(self, "organization")
|
114
100
|
|
115
101
|
@organization.setter
|
@@ -119,9 +105,6 @@ class SecretRoleArgs:
|
|
119
105
|
@property
|
120
106
|
@pulumi.getter(name="teamId")
|
121
107
|
def team_id(self) -> Optional[pulumi.Input[str]]:
|
122
|
-
"""
|
123
|
-
ID of the Terraform Cloud or Enterprise team under organization (e.g., settings/teams/team-xxxxxxxxxxxxx)
|
124
|
-
"""
|
125
108
|
return pulumi.get(self, "team_id")
|
126
109
|
|
127
110
|
@team_id.setter
|
@@ -143,9 +126,6 @@ class SecretRoleArgs:
|
|
143
126
|
@property
|
144
127
|
@pulumi.getter(name="userId")
|
145
128
|
def user_id(self) -> Optional[pulumi.Input[str]]:
|
146
|
-
"""
|
147
|
-
ID of the Terraform Cloud or Enterprise user (e.g., user-xxxxxxxxxxxxxxxx)
|
148
|
-
"""
|
149
129
|
return pulumi.get(self, "user_id")
|
150
130
|
|
151
131
|
@user_id.setter
|
@@ -166,17 +146,12 @@ class _SecretRoleState:
|
|
166
146
|
user_id: Optional[pulumi.Input[str]] = None):
|
167
147
|
"""
|
168
148
|
Input properties used for looking up and filtering SecretRole resources.
|
169
|
-
:param pulumi.Input[str] backend: The path of the Terraform Cloud Secret Backend the role belongs to.
|
170
149
|
:param pulumi.Input[int] max_ttl: Maximum TTL for leases associated with this role, in seconds.
|
171
|
-
:param pulumi.Input[str] name: The name of an existing role against which to create this Terraform Cloud credential
|
172
150
|
:param pulumi.Input[str] namespace: The namespace to provision the resource in.
|
173
151
|
The value should not contain leading or trailing forward slashes.
|
174
152
|
The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
|
175
153
|
*Available only for Vault Enterprise*.
|
176
|
-
:param pulumi.Input[str] organization: Name of the Terraform Cloud or Enterprise organization
|
177
|
-
:param pulumi.Input[str] team_id: ID of the Terraform Cloud or Enterprise team under organization (e.g., settings/teams/team-xxxxxxxxxxxxx)
|
178
154
|
:param pulumi.Input[int] ttl: Specifies the TTL for this role.
|
179
|
-
:param pulumi.Input[str] user_id: ID of the Terraform Cloud or Enterprise user (e.g., user-xxxxxxxxxxxxxxxx)
|
180
155
|
"""
|
181
156
|
if backend is not None:
|
182
157
|
pulumi.set(__self__, "backend", backend)
|
@@ -198,9 +173,6 @@ class _SecretRoleState:
|
|
198
173
|
@property
|
199
174
|
@pulumi.getter
|
200
175
|
def backend(self) -> Optional[pulumi.Input[str]]:
|
201
|
-
"""
|
202
|
-
The path of the Terraform Cloud Secret Backend the role belongs to.
|
203
|
-
"""
|
204
176
|
return pulumi.get(self, "backend")
|
205
177
|
|
206
178
|
@backend.setter
|
@@ -222,9 +194,6 @@ class _SecretRoleState:
|
|
222
194
|
@property
|
223
195
|
@pulumi.getter
|
224
196
|
def name(self) -> Optional[pulumi.Input[str]]:
|
225
|
-
"""
|
226
|
-
The name of an existing role against which to create this Terraform Cloud credential
|
227
|
-
"""
|
228
197
|
return pulumi.get(self, "name")
|
229
198
|
|
230
199
|
@name.setter
|
@@ -249,9 +218,6 @@ class _SecretRoleState:
|
|
249
218
|
@property
|
250
219
|
@pulumi.getter
|
251
220
|
def organization(self) -> Optional[pulumi.Input[str]]:
|
252
|
-
"""
|
253
|
-
Name of the Terraform Cloud or Enterprise organization
|
254
|
-
"""
|
255
221
|
return pulumi.get(self, "organization")
|
256
222
|
|
257
223
|
@organization.setter
|
@@ -261,9 +227,6 @@ class _SecretRoleState:
|
|
261
227
|
@property
|
262
228
|
@pulumi.getter(name="teamId")
|
263
229
|
def team_id(self) -> Optional[pulumi.Input[str]]:
|
264
|
-
"""
|
265
|
-
ID of the Terraform Cloud or Enterprise team under organization (e.g., settings/teams/team-xxxxxxxxxxxxx)
|
266
|
-
"""
|
267
230
|
return pulumi.get(self, "team_id")
|
268
231
|
|
269
232
|
@team_id.setter
|
@@ -285,9 +248,6 @@ class _SecretRoleState:
|
|
285
248
|
@property
|
286
249
|
@pulumi.getter(name="userId")
|
287
250
|
def user_id(self) -> Optional[pulumi.Input[str]]:
|
288
|
-
"""
|
289
|
-
ID of the Terraform Cloud or Enterprise user (e.g., user-xxxxxxxxxxxxxxxx)
|
290
|
-
"""
|
291
251
|
return pulumi.get(self, "user_id")
|
292
252
|
|
293
253
|
@user_id.setter
|
@@ -337,17 +297,12 @@ class SecretRole(pulumi.CustomResource):
|
|
337
297
|
|
338
298
|
:param str resource_name: The name of the resource.
|
339
299
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
340
|
-
:param pulumi.Input[str] backend: The path of the Terraform Cloud Secret Backend the role belongs to.
|
341
300
|
:param pulumi.Input[int] max_ttl: Maximum TTL for leases associated with this role, in seconds.
|
342
|
-
:param pulumi.Input[str] name: The name of an existing role against which to create this Terraform Cloud credential
|
343
301
|
:param pulumi.Input[str] namespace: The namespace to provision the resource in.
|
344
302
|
The value should not contain leading or trailing forward slashes.
|
345
303
|
The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
|
346
304
|
*Available only for Vault Enterprise*.
|
347
|
-
:param pulumi.Input[str] organization: Name of the Terraform Cloud or Enterprise organization
|
348
|
-
:param pulumi.Input[str] team_id: ID of the Terraform Cloud or Enterprise team under organization (e.g., settings/teams/team-xxxxxxxxxxxxx)
|
349
305
|
:param pulumi.Input[int] ttl: Specifies the TTL for this role.
|
350
|
-
:param pulumi.Input[str] user_id: ID of the Terraform Cloud or Enterprise user (e.g., user-xxxxxxxxxxxxxxxx)
|
351
306
|
"""
|
352
307
|
...
|
353
308
|
@overload
|
@@ -446,17 +401,12 @@ class SecretRole(pulumi.CustomResource):
|
|
446
401
|
:param str resource_name: The unique name of the resulting resource.
|
447
402
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
448
403
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
449
|
-
:param pulumi.Input[str] backend: The path of the Terraform Cloud Secret Backend the role belongs to.
|
450
404
|
:param pulumi.Input[int] max_ttl: Maximum TTL for leases associated with this role, in seconds.
|
451
|
-
:param pulumi.Input[str] name: The name of an existing role against which to create this Terraform Cloud credential
|
452
405
|
:param pulumi.Input[str] namespace: The namespace to provision the resource in.
|
453
406
|
The value should not contain leading or trailing forward slashes.
|
454
407
|
The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
|
455
408
|
*Available only for Vault Enterprise*.
|
456
|
-
:param pulumi.Input[str] organization: Name of the Terraform Cloud or Enterprise organization
|
457
|
-
:param pulumi.Input[str] team_id: ID of the Terraform Cloud or Enterprise team under organization (e.g., settings/teams/team-xxxxxxxxxxxxx)
|
458
409
|
:param pulumi.Input[int] ttl: Specifies the TTL for this role.
|
459
|
-
:param pulumi.Input[str] user_id: ID of the Terraform Cloud or Enterprise user (e.g., user-xxxxxxxxxxxxxxxx)
|
460
410
|
"""
|
461
411
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
462
412
|
|
@@ -475,9 +425,6 @@ class SecretRole(pulumi.CustomResource):
|
|
475
425
|
@property
|
476
426
|
@pulumi.getter
|
477
427
|
def backend(self) -> pulumi.Output[Optional[str]]:
|
478
|
-
"""
|
479
|
-
The path of the Terraform Cloud Secret Backend the role belongs to.
|
480
|
-
"""
|
481
428
|
return pulumi.get(self, "backend")
|
482
429
|
|
483
430
|
@property
|
@@ -491,9 +438,6 @@ class SecretRole(pulumi.CustomResource):
|
|
491
438
|
@property
|
492
439
|
@pulumi.getter
|
493
440
|
def name(self) -> pulumi.Output[str]:
|
494
|
-
"""
|
495
|
-
The name of an existing role against which to create this Terraform Cloud credential
|
496
|
-
"""
|
497
441
|
return pulumi.get(self, "name")
|
498
442
|
|
499
443
|
@property
|
@@ -510,17 +454,11 @@ class SecretRole(pulumi.CustomResource):
|
|
510
454
|
@property
|
511
455
|
@pulumi.getter
|
512
456
|
def organization(self) -> pulumi.Output[Optional[str]]:
|
513
|
-
"""
|
514
|
-
Name of the Terraform Cloud or Enterprise organization
|
515
|
-
"""
|
516
457
|
return pulumi.get(self, "organization")
|
517
458
|
|
518
459
|
@property
|
519
460
|
@pulumi.getter(name="teamId")
|
520
461
|
def team_id(self) -> pulumi.Output[Optional[str]]:
|
521
|
-
"""
|
522
|
-
ID of the Terraform Cloud or Enterprise team under organization (e.g., settings/teams/team-xxxxxxxxxxxxx)
|
523
|
-
"""
|
524
462
|
return pulumi.get(self, "team_id")
|
525
463
|
|
526
464
|
@property
|
@@ -534,8 +472,5 @@ class SecretRole(pulumi.CustomResource):
|
|
534
472
|
@property
|
535
473
|
@pulumi.getter(name="userId")
|
536
474
|
def user_id(self) -> pulumi.Output[Optional[str]]:
|
537
|
-
"""
|
538
|
-
ID of the Terraform Cloud or Enterprise user (e.g., user-xxxxxxxxxxxxxxxx)
|
539
|
-
"""
|
540
475
|
return pulumi.get(self, "user_id")
|
541
476
|
|
@@ -24,7 +24,7 @@ pulumi_vault/nomad_secret_role.py,sha256=47QltNPaM58oiCXt77Z6r1cXRVN79FhYWI7Iei5
|
|
24
24
|
pulumi_vault/outputs.py,sha256=mcrrIhKLRFtb_JPFAdlsFxARGwRL_HPRFsP5x39EnVI,13066
|
25
25
|
pulumi_vault/password_policy.py,sha256=sDU2lauo4-13snK35DOXtWbzn_bMJ5AZS-gS57T0aUw,12241
|
26
26
|
pulumi_vault/policy.py,sha256=V6knAiqkzH97T72s6FB2qNjScDfKOAl3mox1h7vg0Ps,10935
|
27
|
-
pulumi_vault/provider.py,sha256=
|
27
|
+
pulumi_vault/provider.py,sha256=mfFA88nxZdkVctKKkuqkJD9m9jwti5yrpuBca7ha9Kc,41810
|
28
28
|
pulumi_vault/pulumi-plugin.json,sha256=BHgFsC41-Fvnemw__W_t7TFx88hlR293T8FGR4tb-QU,42
|
29
29
|
pulumi_vault/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
30
30
|
pulumi_vault/quota_lease_count.py,sha256=oJL_JuvcMwoxHfpRJhZFre3IsKNmmed7Y04TyMNYdr0,21020
|
@@ -50,7 +50,7 @@ pulumi_vault/aws/auth_backend_cert.py,sha256=N6ptGXlQ9eMEiXlqisjTPGwEtYaZZigzUfX
|
|
50
50
|
pulumi_vault/aws/auth_backend_client.py,sha256=4__GwNoO2-b55zA01fBaJrhnhaQLDclZJ7lgATW4lls,32638
|
51
51
|
pulumi_vault/aws/auth_backend_config_identity.py,sha256=Oov2g84mh1NGuSlsg-OIQUxHzLpo1xxSg6ur_bIEVwA,23132
|
52
52
|
pulumi_vault/aws/auth_backend_identity_whitelist.py,sha256=l4WIvov1_SuKA5Bo3iEyCLAazEK2YDk5tQPDTU767JE,16940
|
53
|
-
pulumi_vault/aws/auth_backend_login.py,sha256=
|
53
|
+
pulumi_vault/aws/auth_backend_login.py,sha256=U8x9ifU-mqxOLuMAuxgQPuiUE9bkUb7NaQb_0LOuGWQ,42509
|
54
54
|
pulumi_vault/aws/auth_backend_role.py,sha256=GLIHP4letByZVtEAp3HUOZFYg4nQIIdSpPJT_WWc4oU,100480
|
55
55
|
pulumi_vault/aws/auth_backend_role_tag.py,sha256=FDv2ebCCOMkLMMPlS04kSqzHFcIRZ1xF4ahTQJFByjY,26592
|
56
56
|
pulumi_vault/aws/auth_backend_roletag_blacklist.py,sha256=wl0butmfzT-5citKcAHVhKT_srrtf34rG1ZtOvUWFgY,16510
|
@@ -229,9 +229,9 @@ pulumi_vault/ssh/outputs.py,sha256=a0189oQadVTUrNWG0Hmcop5grRmHp54DWlIsFGi-Njs,1
|
|
229
229
|
pulumi_vault/ssh/secret_backend_ca.py,sha256=xbh5Nshx8_Mfdx8nsDVwDMe0OnuL9vi3md43ii_FNsw,17875
|
230
230
|
pulumi_vault/ssh/secret_backend_role.py,sha256=Nj8EeYNBjguNMD5xhp2kc0lRNdvVQ5xmu4VD9yaDWDw,72399
|
231
231
|
pulumi_vault/terraformcloud/__init__.py,sha256=sNst-XlgbdicqCgFwaD4FZQ1Qbpf3mMh6Q5Fn1J4Arg,354
|
232
|
-
pulumi_vault/terraformcloud/secret_backend.py,sha256=
|
233
|
-
pulumi_vault/terraformcloud/secret_creds.py,sha256=
|
234
|
-
pulumi_vault/terraformcloud/secret_role.py,sha256=
|
232
|
+
pulumi_vault/terraformcloud/secret_backend.py,sha256=XrRZcRglDbb0jmEToX7EFY8FtyyN4v_VvGpus40kJeo,23277
|
233
|
+
pulumi_vault/terraformcloud/secret_creds.py,sha256=jbREz0TwC7-0Psi4Y_E8d1iHsnvOthQiLEjUouz7uwk,17867
|
234
|
+
pulumi_vault/terraformcloud/secret_role.py,sha256=fIWOK8IgkNcEv39dB3cn-uGF6aFvlmdWBGpVrDrxxgk,18805
|
235
235
|
pulumi_vault/tokenauth/__init__.py,sha256=uj-EJDeysMWfUsv2u4NII_tnIzZFXkTcEpYvGpEjotk,302
|
236
236
|
pulumi_vault/tokenauth/auth_backend_role.py,sha256=9ZTafjjr8SZyagQdcPe7EJrP_4XisI0zGwtvMWR84pI,52075
|
237
237
|
pulumi_vault/transform/__init__.py,sha256=cywOzL5fbNIQ8v8Wb5KHP7zIxlbdiilO6z2JyG2gYLw,419
|
@@ -246,7 +246,7 @@ pulumi_vault/transit/get_decrypt.py,sha256=6rFzK4Ghf3tWRNJ_rSCs0yJsPynk9oeqZIJJq
|
|
246
246
|
pulumi_vault/transit/get_encrypt.py,sha256=wz1GDrLP8JzDLCcjbU7tZM7vHNtBQ9PPpLHczy22uqY,5712
|
247
247
|
pulumi_vault/transit/secret_backend_key.py,sha256=56to0JZaIFaCZVeiW5pNKER6azVhs2JXJoccgdVdtoI,53286
|
248
248
|
pulumi_vault/transit/secret_cache_config.py,sha256=kSfKajNG2v5iPtoEnNLRXCIR5sRGUqTTxRW-tT0X_iM,12483
|
249
|
-
pulumi_vault-6.2.
|
250
|
-
pulumi_vault-6.2.
|
251
|
-
pulumi_vault-6.2.
|
252
|
-
pulumi_vault-6.2.
|
249
|
+
pulumi_vault-6.2.0a1715339765.dist-info/METADATA,sha256=OYDriw8ytVU5QzOwisWvJRdOr-kfZExHcbxYINtIRsk,4860
|
250
|
+
pulumi_vault-6.2.0a1715339765.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
251
|
+
pulumi_vault-6.2.0a1715339765.dist-info/top_level.txt,sha256=J7lAGvfexHc6T1EpDBGNKF0SXWURpmUhyzi9Nr5I61w,13
|
252
|
+
pulumi_vault-6.2.0a1715339765.dist-info/RECORD,,
|
File without changes
|
{pulumi_vault-6.2.0a1715237402.dist-info → pulumi_vault-6.2.0a1715339765.dist-info}/top_level.txt
RENAMED
File without changes
|