pulumi-vault 5.21.0a1711033014__py3-none-any.whl → 6.0.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (163) hide show
  1. pulumi_vault/__init__.py +24 -0
  2. pulumi_vault/ad/get_access_credentials.py +2 -2
  3. pulumi_vault/ad/secret_backend.py +7 -138
  4. pulumi_vault/ad/secret_library.py +7 -7
  5. pulumi_vault/ad/secret_role.py +7 -7
  6. pulumi_vault/approle/auth_backend_login.py +7 -7
  7. pulumi_vault/approle/auth_backend_role.py +7 -7
  8. pulumi_vault/approle/auth_backend_role_secret_id.py +7 -7
  9. pulumi_vault/audit.py +7 -7
  10. pulumi_vault/auth_backend.py +7 -7
  11. pulumi_vault/aws/auth_backend_cert.py +7 -7
  12. pulumi_vault/aws/auth_backend_client.py +7 -7
  13. pulumi_vault/aws/auth_backend_config_identity.py +7 -7
  14. pulumi_vault/aws/auth_backend_identity_whitelist.py +7 -7
  15. pulumi_vault/aws/auth_backend_login.py +7 -7
  16. pulumi_vault/aws/auth_backend_role.py +7 -7
  17. pulumi_vault/aws/auth_backend_role_tag.py +7 -7
  18. pulumi_vault/aws/auth_backend_roletag_blacklist.py +7 -7
  19. pulumi_vault/aws/auth_backend_sts_role.py +7 -7
  20. pulumi_vault/aws/get_access_credentials.py +2 -2
  21. pulumi_vault/aws/secret_backend.py +7 -7
  22. pulumi_vault/aws/secret_backend_role.py +7 -7
  23. pulumi_vault/aws/secret_backend_static_role.py +7 -7
  24. pulumi_vault/azure/auth_backend_config.py +7 -7
  25. pulumi_vault/azure/auth_backend_role.py +7 -7
  26. pulumi_vault/azure/backend.py +7 -7
  27. pulumi_vault/azure/backend_role.py +7 -7
  28. pulumi_vault/azure/get_access_credentials.py +2 -2
  29. pulumi_vault/cert_auth_backend_role.py +7 -63
  30. pulumi_vault/config/_inputs.py +52 -0
  31. pulumi_vault/config/outputs.py +30 -0
  32. pulumi_vault/config/ui_custom_message.py +524 -0
  33. pulumi_vault/consul/secret_backend.py +7 -7
  34. pulumi_vault/consul/secret_backend_role.py +7 -76
  35. pulumi_vault/egp_policy.py +7 -7
  36. pulumi_vault/gcp/auth_backend.py +7 -7
  37. pulumi_vault/gcp/auth_backend_role.py +7 -7
  38. pulumi_vault/gcp/secret_backend.py +7 -7
  39. pulumi_vault/gcp/secret_roleset.py +7 -7
  40. pulumi_vault/gcp/secret_static_account.py +7 -7
  41. pulumi_vault/generic/endpoint.py +7 -7
  42. pulumi_vault/generic/get_secret.py +2 -2
  43. pulumi_vault/generic/secret.py +7 -7
  44. pulumi_vault/get_auth_backend.py +2 -2
  45. pulumi_vault/get_auth_backends.py +20 -2
  46. pulumi_vault/get_nomad_access_token.py +2 -2
  47. pulumi_vault/get_raft_autopilot_state.py +2 -2
  48. pulumi_vault/github/auth_backend.py +7 -7
  49. pulumi_vault/github/team.py +7 -7
  50. pulumi_vault/github/user.py +7 -7
  51. pulumi_vault/identity/entity.py +7 -7
  52. pulumi_vault/identity/entity_alias.py +7 -7
  53. pulumi_vault/identity/entity_policies.py +7 -7
  54. pulumi_vault/identity/get_entity.py +2 -2
  55. pulumi_vault/identity/get_group.py +2 -2
  56. pulumi_vault/identity/get_oidc_client_creds.py +2 -2
  57. pulumi_vault/identity/get_oidc_openid_config.py +2 -2
  58. pulumi_vault/identity/get_oidc_public_keys.py +2 -2
  59. pulumi_vault/identity/group.py +7 -7
  60. pulumi_vault/identity/group_alias.py +7 -7
  61. pulumi_vault/identity/group_member_entity_ids.py +7 -58
  62. pulumi_vault/identity/group_member_group_ids.py +7 -7
  63. pulumi_vault/identity/group_policies.py +7 -7
  64. pulumi_vault/identity/oidc.py +7 -7
  65. pulumi_vault/identity/oidc_assignment.py +7 -7
  66. pulumi_vault/identity/oidc_client.py +19 -15
  67. pulumi_vault/identity/oidc_key.py +7 -7
  68. pulumi_vault/identity/oidc_key_allowed_client_id.py +7 -7
  69. pulumi_vault/identity/oidc_provider.py +7 -7
  70. pulumi_vault/identity/oidc_role.py +7 -7
  71. pulumi_vault/identity/oidc_scope.py +7 -7
  72. pulumi_vault/jwt/auth_backend.py +7 -7
  73. pulumi_vault/jwt/auth_backend_role.py +7 -7
  74. pulumi_vault/kmip/secret_backend.py +7 -7
  75. pulumi_vault/kmip/secret_role.py +7 -7
  76. pulumi_vault/kmip/secret_scope.py +7 -7
  77. pulumi_vault/kubernetes/auth_backend_role.py +7 -7
  78. pulumi_vault/kubernetes/get_service_account_token.py +2 -2
  79. pulumi_vault/kubernetes/secret_backend.py +7 -7
  80. pulumi_vault/kubernetes/secret_backend_role.py +7 -7
  81. pulumi_vault/kv/get_secret.py +2 -2
  82. pulumi_vault/kv/get_secret_subkeys_v2.py +2 -2
  83. pulumi_vault/kv/get_secret_v2.py +5 -2
  84. pulumi_vault/kv/get_secrets_list.py +2 -2
  85. pulumi_vault/kv/get_secrets_list_v2.py +2 -2
  86. pulumi_vault/kv/secret.py +7 -7
  87. pulumi_vault/kv/secret_backend_v2.py +7 -7
  88. pulumi_vault/kv/secret_v2.py +7 -7
  89. pulumi_vault/ldap/auth_backend.py +7 -7
  90. pulumi_vault/ldap/auth_backend_group.py +7 -7
  91. pulumi_vault/ldap/auth_backend_user.py +7 -7
  92. pulumi_vault/ldap/secret_backend.py +61 -76
  93. pulumi_vault/ldap/secret_backend_dynamic_role.py +7 -7
  94. pulumi_vault/ldap/secret_backend_library_set.py +7 -7
  95. pulumi_vault/ldap/secret_backend_static_role.py +62 -8
  96. pulumi_vault/mfa_duo.py +7 -7
  97. pulumi_vault/mfa_okta.py +7 -7
  98. pulumi_vault/mfa_pingid.py +7 -7
  99. pulumi_vault/mfa_totp.py +7 -7
  100. pulumi_vault/mongodbatlas/secret_backend.py +7 -7
  101. pulumi_vault/mongodbatlas/secret_role.py +7 -7
  102. pulumi_vault/mount.py +11 -7
  103. pulumi_vault/namespace.py +7 -7
  104. pulumi_vault/nomad_secret_backend.py +7 -7
  105. pulumi_vault/nomad_secret_role.py +7 -7
  106. pulumi_vault/okta/auth_backend.py +7 -7
  107. pulumi_vault/okta/auth_backend_group.py +7 -7
  108. pulumi_vault/okta/auth_backend_user.py +7 -7
  109. pulumi_vault/password_policy.py +7 -7
  110. pulumi_vault/pkisecret/__init__.py +1 -0
  111. pulumi_vault/pkisecret/backend_config_cluster.py +368 -0
  112. pulumi_vault/pkisecret/get_backend_issuer.py +2 -2
  113. pulumi_vault/pkisecret/get_backend_issuers.py +2 -2
  114. pulumi_vault/pkisecret/get_backend_key.py +2 -2
  115. pulumi_vault/pkisecret/get_backend_keys.py +2 -2
  116. pulumi_vault/pkisecret/secret_backend_cert.py +7 -7
  117. pulumi_vault/pkisecret/secret_backend_config_ca.py +7 -7
  118. pulumi_vault/pkisecret/secret_backend_config_issuers.py +7 -7
  119. pulumi_vault/pkisecret/secret_backend_config_urls.py +54 -7
  120. pulumi_vault/pkisecret/secret_backend_crl_config.py +7 -7
  121. pulumi_vault/pkisecret/secret_backend_intermediate_cert_request.py +7 -7
  122. pulumi_vault/pkisecret/secret_backend_intermediate_set_signed.py +7 -7
  123. pulumi_vault/pkisecret/secret_backend_issuer.py +7 -7
  124. pulumi_vault/pkisecret/secret_backend_key.py +7 -7
  125. pulumi_vault/pkisecret/secret_backend_role.py +7 -7
  126. pulumi_vault/pkisecret/secret_backend_root_cert.py +7 -44
  127. pulumi_vault/pkisecret/secret_backend_root_sign_intermediate.py +7 -52
  128. pulumi_vault/pkisecret/secret_backend_sign.py +7 -52
  129. pulumi_vault/policy.py +7 -7
  130. pulumi_vault/rabbitmq/secret_backend.py +7 -7
  131. pulumi_vault/rabbitmq/secret_backend_role.py +7 -7
  132. pulumi_vault/raft_autopilot.py +7 -7
  133. pulumi_vault/raft_snapshot_agent_config.py +7 -7
  134. pulumi_vault/rgp_policy.py +7 -7
  135. pulumi_vault/saml/auth_backend.py +7 -7
  136. pulumi_vault/saml/auth_backend_role.py +7 -7
  137. pulumi_vault/secrets/__init__.py +1 -0
  138. pulumi_vault/secrets/sync_association.py +7 -7
  139. pulumi_vault/secrets/sync_aws_destination.py +161 -7
  140. pulumi_vault/secrets/sync_azure_destination.py +7 -7
  141. pulumi_vault/secrets/sync_gcp_destination.py +77 -7
  142. pulumi_vault/secrets/sync_gh_destination.py +122 -7
  143. pulumi_vault/secrets/sync_github_apps.py +370 -0
  144. pulumi_vault/secrets/sync_vercel_destination.py +7 -7
  145. pulumi_vault/ssh/secret_backend_ca.py +7 -7
  146. pulumi_vault/ssh/secret_backend_role.py +7 -83
  147. pulumi_vault/terraformcloud/secret_creds.py +7 -7
  148. pulumi_vault/terraformcloud/secret_role.py +7 -7
  149. pulumi_vault/token.py +7 -7
  150. pulumi_vault/tokenauth/auth_backend_role.py +7 -7
  151. pulumi_vault/transform/alphabet.py +7 -7
  152. pulumi_vault/transform/get_decode.py +2 -2
  153. pulumi_vault/transform/get_encode.py +2 -2
  154. pulumi_vault/transform/role.py +7 -7
  155. pulumi_vault/transform/template.py +7 -7
  156. pulumi_vault/transform/transformation.py +7 -7
  157. pulumi_vault/transit/secret_backend_key.py +7 -84
  158. pulumi_vault/transit/secret_cache_config.py +7 -7
  159. {pulumi_vault-5.21.0a1711033014.dist-info → pulumi_vault-6.0.0.dist-info}/METADATA +2 -2
  160. pulumi_vault-6.0.0.dist-info/RECORD +248 -0
  161. pulumi_vault-5.21.0a1711033014.dist-info/RECORD +0 -244
  162. {pulumi_vault-5.21.0a1711033014.dist-info → pulumi_vault-6.0.0.dist-info}/WHEEL +0 -0
  163. {pulumi_vault-5.21.0a1711033014.dist-info → pulumi_vault-6.0.0.dist-info}/top_level.txt +0 -0
@@ -19,7 +19,8 @@ class SecretBackendStaticRoleArgs:
19
19
  username: pulumi.Input[str],
20
20
  dn: Optional[pulumi.Input[str]] = None,
21
21
  mount: Optional[pulumi.Input[str]] = None,
22
- namespace: Optional[pulumi.Input[str]] = None):
22
+ namespace: Optional[pulumi.Input[str]] = None,
23
+ skip_import_rotation: Optional[pulumi.Input[bool]] = None):
23
24
  """
24
25
  The set of arguments for constructing a SecretBackendStaticRole resource.
25
26
  :param pulumi.Input[str] role_name: Name of the role.
@@ -32,8 +33,10 @@ class SecretBackendStaticRoleArgs:
32
33
  not begin or end with a `/`. Defaults to `ldap`.
33
34
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
34
35
  The value should not contain leading or trailing forward slashes.
35
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
36
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
36
37
  *Available only for Vault Enterprise*.
38
+ :param pulumi.Input[bool] skip_import_rotation: Causes vault to skip the initial secret rotation on import. Not applicable to updates.
39
+ Requires Vault 1.16 or above.
37
40
  """
38
41
  pulumi.set(__self__, "role_name", role_name)
39
42
  pulumi.set(__self__, "rotation_period", rotation_period)
@@ -44,6 +47,8 @@ class SecretBackendStaticRoleArgs:
44
47
  pulumi.set(__self__, "mount", mount)
45
48
  if namespace is not None:
46
49
  pulumi.set(__self__, "namespace", namespace)
50
+ if skip_import_rotation is not None:
51
+ pulumi.set(__self__, "skip_import_rotation", skip_import_rotation)
47
52
 
48
53
  @property
49
54
  @pulumi.getter(name="roleName")
@@ -114,7 +119,7 @@ class SecretBackendStaticRoleArgs:
114
119
  """
115
120
  The namespace to provision the resource in.
116
121
  The value should not contain leading or trailing forward slashes.
117
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
122
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
118
123
  *Available only for Vault Enterprise*.
119
124
  """
120
125
  return pulumi.get(self, "namespace")
@@ -123,6 +128,19 @@ class SecretBackendStaticRoleArgs:
123
128
  def namespace(self, value: Optional[pulumi.Input[str]]):
124
129
  pulumi.set(self, "namespace", value)
125
130
 
131
+ @property
132
+ @pulumi.getter(name="skipImportRotation")
133
+ def skip_import_rotation(self) -> Optional[pulumi.Input[bool]]:
134
+ """
135
+ Causes vault to skip the initial secret rotation on import. Not applicable to updates.
136
+ Requires Vault 1.16 or above.
137
+ """
138
+ return pulumi.get(self, "skip_import_rotation")
139
+
140
+ @skip_import_rotation.setter
141
+ def skip_import_rotation(self, value: Optional[pulumi.Input[bool]]):
142
+ pulumi.set(self, "skip_import_rotation", value)
143
+
126
144
 
127
145
  @pulumi.input_type
128
146
  class _SecretBackendStaticRoleState:
@@ -132,6 +150,7 @@ class _SecretBackendStaticRoleState:
132
150
  namespace: Optional[pulumi.Input[str]] = None,
133
151
  role_name: Optional[pulumi.Input[str]] = None,
134
152
  rotation_period: Optional[pulumi.Input[int]] = None,
153
+ skip_import_rotation: Optional[pulumi.Input[bool]] = None,
135
154
  username: Optional[pulumi.Input[str]] = None):
136
155
  """
137
156
  Input properties used for looking up and filtering SecretBackendStaticRole resources.
@@ -142,10 +161,12 @@ class _SecretBackendStaticRoleState:
142
161
  not begin or end with a `/`. Defaults to `ldap`.
143
162
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
144
163
  The value should not contain leading or trailing forward slashes.
145
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
164
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
146
165
  *Available only for Vault Enterprise*.
147
166
  :param pulumi.Input[str] role_name: Name of the role.
148
167
  :param pulumi.Input[int] rotation_period: How often Vault should rotate the password of the user entry.
168
+ :param pulumi.Input[bool] skip_import_rotation: Causes vault to skip the initial secret rotation on import. Not applicable to updates.
169
+ Requires Vault 1.16 or above.
149
170
  :param pulumi.Input[str] username: The username of the existing LDAP entry to manage password rotation for.
150
171
  """
151
172
  if dn is not None:
@@ -158,6 +179,8 @@ class _SecretBackendStaticRoleState:
158
179
  pulumi.set(__self__, "role_name", role_name)
159
180
  if rotation_period is not None:
160
181
  pulumi.set(__self__, "rotation_period", rotation_period)
182
+ if skip_import_rotation is not None:
183
+ pulumi.set(__self__, "skip_import_rotation", skip_import_rotation)
161
184
  if username is not None:
162
185
  pulumi.set(__self__, "username", username)
163
186
 
@@ -194,7 +217,7 @@ class _SecretBackendStaticRoleState:
194
217
  """
195
218
  The namespace to provision the resource in.
196
219
  The value should not contain leading or trailing forward slashes.
197
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
220
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
198
221
  *Available only for Vault Enterprise*.
199
222
  """
200
223
  return pulumi.get(self, "namespace")
@@ -227,6 +250,19 @@ class _SecretBackendStaticRoleState:
227
250
  def rotation_period(self, value: Optional[pulumi.Input[int]]):
228
251
  pulumi.set(self, "rotation_period", value)
229
252
 
253
+ @property
254
+ @pulumi.getter(name="skipImportRotation")
255
+ def skip_import_rotation(self) -> Optional[pulumi.Input[bool]]:
256
+ """
257
+ Causes vault to skip the initial secret rotation on import. Not applicable to updates.
258
+ Requires Vault 1.16 or above.
259
+ """
260
+ return pulumi.get(self, "skip_import_rotation")
261
+
262
+ @skip_import_rotation.setter
263
+ def skip_import_rotation(self, value: Optional[pulumi.Input[bool]]):
264
+ pulumi.set(self, "skip_import_rotation", value)
265
+
230
266
  @property
231
267
  @pulumi.getter
232
268
  def username(self) -> Optional[pulumi.Input[str]]:
@@ -250,6 +286,7 @@ class SecretBackendStaticRole(pulumi.CustomResource):
250
286
  namespace: Optional[pulumi.Input[str]] = None,
251
287
  role_name: Optional[pulumi.Input[str]] = None,
252
288
  rotation_period: Optional[pulumi.Input[int]] = None,
289
+ skip_import_rotation: Optional[pulumi.Input[bool]] = None,
253
290
  username: Optional[pulumi.Input[str]] = None,
254
291
  __props__=None):
255
292
  """
@@ -294,10 +331,12 @@ class SecretBackendStaticRole(pulumi.CustomResource):
294
331
  not begin or end with a `/`. Defaults to `ldap`.
295
332
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
296
333
  The value should not contain leading or trailing forward slashes.
297
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
334
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
298
335
  *Available only for Vault Enterprise*.
299
336
  :param pulumi.Input[str] role_name: Name of the role.
300
337
  :param pulumi.Input[int] rotation_period: How often Vault should rotate the password of the user entry.
338
+ :param pulumi.Input[bool] skip_import_rotation: Causes vault to skip the initial secret rotation on import. Not applicable to updates.
339
+ Requires Vault 1.16 or above.
301
340
  :param pulumi.Input[str] username: The username of the existing LDAP entry to manage password rotation for.
302
341
  """
303
342
  ...
@@ -359,6 +398,7 @@ class SecretBackendStaticRole(pulumi.CustomResource):
359
398
  namespace: Optional[pulumi.Input[str]] = None,
360
399
  role_name: Optional[pulumi.Input[str]] = None,
361
400
  rotation_period: Optional[pulumi.Input[int]] = None,
401
+ skip_import_rotation: Optional[pulumi.Input[bool]] = None,
362
402
  username: Optional[pulumi.Input[str]] = None,
363
403
  __props__=None):
364
404
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
@@ -378,6 +418,7 @@ class SecretBackendStaticRole(pulumi.CustomResource):
378
418
  if rotation_period is None and not opts.urn:
379
419
  raise TypeError("Missing required property 'rotation_period'")
380
420
  __props__.__dict__["rotation_period"] = rotation_period
421
+ __props__.__dict__["skip_import_rotation"] = skip_import_rotation
381
422
  if username is None and not opts.urn:
382
423
  raise TypeError("Missing required property 'username'")
383
424
  __props__.__dict__["username"] = username
@@ -396,6 +437,7 @@ class SecretBackendStaticRole(pulumi.CustomResource):
396
437
  namespace: Optional[pulumi.Input[str]] = None,
397
438
  role_name: Optional[pulumi.Input[str]] = None,
398
439
  rotation_period: Optional[pulumi.Input[int]] = None,
440
+ skip_import_rotation: Optional[pulumi.Input[bool]] = None,
399
441
  username: Optional[pulumi.Input[str]] = None) -> 'SecretBackendStaticRole':
400
442
  """
401
443
  Get an existing SecretBackendStaticRole resource's state with the given name, id, and optional extra
@@ -411,10 +453,12 @@ class SecretBackendStaticRole(pulumi.CustomResource):
411
453
  not begin or end with a `/`. Defaults to `ldap`.
412
454
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
413
455
  The value should not contain leading or trailing forward slashes.
414
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
456
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
415
457
  *Available only for Vault Enterprise*.
416
458
  :param pulumi.Input[str] role_name: Name of the role.
417
459
  :param pulumi.Input[int] rotation_period: How often Vault should rotate the password of the user entry.
460
+ :param pulumi.Input[bool] skip_import_rotation: Causes vault to skip the initial secret rotation on import. Not applicable to updates.
461
+ Requires Vault 1.16 or above.
418
462
  :param pulumi.Input[str] username: The username of the existing LDAP entry to manage password rotation for.
419
463
  """
420
464
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
@@ -426,6 +470,7 @@ class SecretBackendStaticRole(pulumi.CustomResource):
426
470
  __props__.__dict__["namespace"] = namespace
427
471
  __props__.__dict__["role_name"] = role_name
428
472
  __props__.__dict__["rotation_period"] = rotation_period
473
+ __props__.__dict__["skip_import_rotation"] = skip_import_rotation
429
474
  __props__.__dict__["username"] = username
430
475
  return SecretBackendStaticRole(resource_name, opts=opts, __props__=__props__)
431
476
 
@@ -454,7 +499,7 @@ class SecretBackendStaticRole(pulumi.CustomResource):
454
499
  """
455
500
  The namespace to provision the resource in.
456
501
  The value should not contain leading or trailing forward slashes.
457
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
502
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
458
503
  *Available only for Vault Enterprise*.
459
504
  """
460
505
  return pulumi.get(self, "namespace")
@@ -475,6 +520,15 @@ class SecretBackendStaticRole(pulumi.CustomResource):
475
520
  """
476
521
  return pulumi.get(self, "rotation_period")
477
522
 
523
+ @property
524
+ @pulumi.getter(name="skipImportRotation")
525
+ def skip_import_rotation(self) -> pulumi.Output[Optional[bool]]:
526
+ """
527
+ Causes vault to skip the initial secret rotation on import. Not applicable to updates.
528
+ Requires Vault 1.16 or above.
529
+ """
530
+ return pulumi.get(self, "skip_import_rotation")
531
+
478
532
  @property
479
533
  @pulumi.getter
480
534
  def username(self) -> pulumi.Output[str]:
pulumi_vault/mfa_duo.py CHANGED
@@ -31,7 +31,7 @@ class MfaDuoArgs:
31
31
  :param pulumi.Input[str] name: `(string: <required>)` – Name of the MFA method.
32
32
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
33
33
  The value should not contain leading or trailing forward slashes.
34
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
34
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
35
35
  *Available only for Vault Enterprise*.
36
36
  :param pulumi.Input[str] push_info: `(string)` - Push information for Duo.
37
37
  :param pulumi.Input[str] username_format: `(string)` - A format string for mapping Identity names to MFA method names. Values to substitute should be placed in `{{}}`. For example, `"{{alias.name}}@example.com"`. If blank, the Alias's Name field will be used as-is. Currently-supported mappings:
@@ -119,7 +119,7 @@ class MfaDuoArgs:
119
119
  """
120
120
  The namespace to provision the resource in.
121
121
  The value should not contain leading or trailing forward slashes.
122
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
122
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
123
123
  *Available only for Vault Enterprise*.
124
124
  """
125
125
  return pulumi.get(self, "namespace")
@@ -176,7 +176,7 @@ class _MfaDuoState:
176
176
  :param pulumi.Input[str] name: `(string: <required>)` – Name of the MFA method.
177
177
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
178
178
  The value should not contain leading or trailing forward slashes.
179
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
179
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
180
180
  *Available only for Vault Enterprise*.
181
181
  :param pulumi.Input[str] push_info: `(string)` - Push information for Duo.
182
182
  :param pulumi.Input[str] secret_key: `(string: <required>)` - Secret key for Duo.
@@ -257,7 +257,7 @@ class _MfaDuoState:
257
257
  """
258
258
  The namespace to provision the resource in.
259
259
  The value should not contain leading or trailing forward slashes.
260
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
260
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
261
261
  *Available only for Vault Enterprise*.
262
262
  """
263
263
  return pulumi.get(self, "namespace")
@@ -360,7 +360,7 @@ class MfaDuo(pulumi.CustomResource):
360
360
  :param pulumi.Input[str] name: `(string: <required>)` – Name of the MFA method.
361
361
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
362
362
  The value should not contain leading or trailing forward slashes.
363
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
363
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
364
364
  *Available only for Vault Enterprise*.
365
365
  :param pulumi.Input[str] push_info: `(string)` - Push information for Duo.
366
366
  :param pulumi.Input[str] secret_key: `(string: <required>)` - Secret key for Duo.
@@ -488,7 +488,7 @@ class MfaDuo(pulumi.CustomResource):
488
488
  :param pulumi.Input[str] name: `(string: <required>)` – Name of the MFA method.
489
489
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
490
490
  The value should not contain leading or trailing forward slashes.
491
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
491
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
492
492
  *Available only for Vault Enterprise*.
493
493
  :param pulumi.Input[str] push_info: `(string)` - Push information for Duo.
494
494
  :param pulumi.Input[str] secret_key: `(string: <required>)` - Secret key for Duo.
@@ -550,7 +550,7 @@ class MfaDuo(pulumi.CustomResource):
550
550
  """
551
551
  The namespace to provision the resource in.
552
552
  The value should not contain leading or trailing forward slashes.
553
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
553
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
554
554
  *Available only for Vault Enterprise*.
555
555
  """
556
556
  return pulumi.get(self, "namespace")
pulumi_vault/mfa_okta.py CHANGED
@@ -33,7 +33,7 @@ class MfaOktaArgs:
33
33
  :param pulumi.Input[str] name: `(string: <required>)` – Name of the MFA method.
34
34
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
35
35
  The value should not contain leading or trailing forward slashes.
36
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
36
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
37
37
  *Available only for Vault Enterprise*.
38
38
  :param pulumi.Input[bool] primary_email: `(string: <required>)` - If set to true, the username will only match the
39
39
  primary email for the account.
@@ -127,7 +127,7 @@ class MfaOktaArgs:
127
127
  """
128
128
  The namespace to provision the resource in.
129
129
  The value should not contain leading or trailing forward slashes.
130
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
130
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
131
131
  *Available only for Vault Enterprise*.
132
132
  """
133
133
  return pulumi.get(self, "namespace")
@@ -189,7 +189,7 @@ class _MfaOktaState:
189
189
  :param pulumi.Input[str] name: `(string: <required>)` – Name of the MFA method.
190
190
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
191
191
  The value should not contain leading or trailing forward slashes.
192
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
192
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
193
193
  *Available only for Vault Enterprise*.
194
194
  :param pulumi.Input[str] org_name: `(string: <required>)` - Name of the organization to be used in the Okta API.
195
195
  :param pulumi.Input[bool] primary_email: `(string: <required>)` - If set to true, the username will only match the
@@ -275,7 +275,7 @@ class _MfaOktaState:
275
275
  """
276
276
  The namespace to provision the resource in.
277
277
  The value should not contain leading or trailing forward slashes.
278
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
278
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
279
279
  *Available only for Vault Enterprise*.
280
280
  """
281
281
  return pulumi.get(self, "namespace")
@@ -383,7 +383,7 @@ class MfaOkta(pulumi.CustomResource):
383
383
  :param pulumi.Input[str] name: `(string: <required>)` – Name of the MFA method.
384
384
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
385
385
  The value should not contain leading or trailing forward slashes.
386
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
386
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
387
387
  *Available only for Vault Enterprise*.
388
388
  :param pulumi.Input[str] org_name: `(string: <required>)` - Name of the organization to be used in the Okta API.
389
389
  :param pulumi.Input[bool] primary_email: `(string: <required>)` - If set to true, the username will only match the
@@ -514,7 +514,7 @@ class MfaOkta(pulumi.CustomResource):
514
514
  :param pulumi.Input[str] name: `(string: <required>)` – Name of the MFA method.
515
515
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
516
516
  The value should not contain leading or trailing forward slashes.
517
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
517
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
518
518
  *Available only for Vault Enterprise*.
519
519
  :param pulumi.Input[str] org_name: `(string: <required>)` - Name of the organization to be used in the Okta API.
520
520
  :param pulumi.Input[bool] primary_email: `(string: <required>)` - If set to true, the username will only match the
@@ -581,7 +581,7 @@ class MfaOkta(pulumi.CustomResource):
581
581
  """
582
582
  The namespace to provision the resource in.
583
583
  The value should not contain leading or trailing forward slashes.
584
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
584
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
585
585
  *Available only for Vault Enterprise*.
586
586
  """
587
587
  return pulumi.get(self, "namespace")
@@ -28,7 +28,7 @@ class MfaPingidArgs:
28
28
  :param pulumi.Input[str] name: `(string: <required>)` – Name of the MFA method.
29
29
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
30
30
  The value should not contain leading or trailing forward slashes.
31
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
31
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
32
32
  *Available only for Vault Enterprise*.
33
33
  :param pulumi.Input[str] username_format: `(string)` - A format string for mapping Identity names to MFA method names.
34
34
  Values to substitute should be placed in `{{}}`. For example, `"{{alias.name}}@example.com"`.
@@ -91,7 +91,7 @@ class MfaPingidArgs:
91
91
  """
92
92
  The namespace to provision the resource in.
93
93
  The value should not contain leading or trailing forward slashes.
94
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
94
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
95
95
  *Available only for Vault Enterprise*.
96
96
  """
97
97
  return pulumi.get(self, "namespace")
@@ -144,7 +144,7 @@ class _MfaPingidState:
144
144
  :param pulumi.Input[str] name: `(string: <required>)` – Name of the MFA method.
145
145
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
146
146
  The value should not contain leading or trailing forward slashes.
147
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
147
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
148
148
  *Available only for Vault Enterprise*.
149
149
  :param pulumi.Input[str] namespace_id: `(string)` – Namespace ID computed by Vault
150
150
  :param pulumi.Input[str] org_alias: `(string)` – Org Alias computed by Vault
@@ -252,7 +252,7 @@ class _MfaPingidState:
252
252
  """
253
253
  The namespace to provision the resource in.
254
254
  The value should not contain leading or trailing forward slashes.
255
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
255
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
256
256
  *Available only for Vault Enterprise*.
257
257
  """
258
258
  return pulumi.get(self, "namespace")
@@ -391,7 +391,7 @@ class MfaPingid(pulumi.CustomResource):
391
391
  :param pulumi.Input[str] name: `(string: <required>)` – Name of the MFA method.
392
392
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
393
393
  The value should not contain leading or trailing forward slashes.
394
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
394
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
395
395
  *Available only for Vault Enterprise*.
396
396
  :param pulumi.Input[str] settings_file_base64: `(string: <required>)` - A base64-encoded third-party settings file retrieved
397
397
  from PingID's configuration page.
@@ -523,7 +523,7 @@ class MfaPingid(pulumi.CustomResource):
523
523
  :param pulumi.Input[str] name: `(string: <required>)` – Name of the MFA method.
524
524
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
525
525
  The value should not contain leading or trailing forward slashes.
526
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
526
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
527
527
  *Available only for Vault Enterprise*.
528
528
  :param pulumi.Input[str] namespace_id: `(string)` – Namespace ID computed by Vault
529
529
  :param pulumi.Input[str] org_alias: `(string)` – Org Alias computed by Vault
@@ -604,7 +604,7 @@ class MfaPingid(pulumi.CustomResource):
604
604
  """
605
605
  The namespace to provision the resource in.
606
606
  The value should not contain leading or trailing forward slashes.
607
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
607
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
608
608
  *Available only for Vault Enterprise*.
609
609
  """
610
610
  return pulumi.get(self, "namespace")
pulumi_vault/mfa_totp.py CHANGED
@@ -34,7 +34,7 @@ class MfaTotpArgs:
34
34
  :param pulumi.Input[str] name: `(string: <required>)` – Name of the MFA method.
35
35
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
36
36
  The value should not contain leading or trailing forward slashes.
37
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
37
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
38
38
  *Available only for Vault Enterprise*.
39
39
  :param pulumi.Input[int] period: `(int)` - The length of time used to generate a counter for the TOTP token calculation.
40
40
  :param pulumi.Input[int] qr_size: `(int)` - The pixel size of the generated square QR code.
@@ -127,7 +127,7 @@ class MfaTotpArgs:
127
127
  """
128
128
  The namespace to provision the resource in.
129
129
  The value should not contain leading or trailing forward slashes.
130
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
130
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
131
131
  *Available only for Vault Enterprise*.
132
132
  """
133
133
  return pulumi.get(self, "namespace")
@@ -197,7 +197,7 @@ class _MfaTotpState:
197
197
  :param pulumi.Input[str] name: `(string: <required>)` – Name of the MFA method.
198
198
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
199
199
  The value should not contain leading or trailing forward slashes.
200
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
200
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
201
201
  *Available only for Vault Enterprise*.
202
202
  :param pulumi.Input[int] period: `(int)` - The length of time used to generate a counter for the TOTP token calculation.
203
203
  :param pulumi.Input[int] qr_size: `(int)` - The pixel size of the generated square QR code.
@@ -291,7 +291,7 @@ class _MfaTotpState:
291
291
  """
292
292
  The namespace to provision the resource in.
293
293
  The value should not contain leading or trailing forward slashes.
294
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
294
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
295
295
  *Available only for Vault Enterprise*.
296
296
  """
297
297
  return pulumi.get(self, "namespace")
@@ -393,7 +393,7 @@ class MfaTotp(pulumi.CustomResource):
393
393
  :param pulumi.Input[str] name: `(string: <required>)` – Name of the MFA method.
394
394
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
395
395
  The value should not contain leading or trailing forward slashes.
396
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
396
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
397
397
  *Available only for Vault Enterprise*.
398
398
  :param pulumi.Input[int] period: `(int)` - The length of time used to generate a counter for the TOTP token calculation.
399
399
  :param pulumi.Input[int] qr_size: `(int)` - The pixel size of the generated square QR code.
@@ -514,7 +514,7 @@ class MfaTotp(pulumi.CustomResource):
514
514
  :param pulumi.Input[str] name: `(string: <required>)` – Name of the MFA method.
515
515
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
516
516
  The value should not contain leading or trailing forward slashes.
517
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
517
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
518
518
  *Available only for Vault Enterprise*.
519
519
  :param pulumi.Input[int] period: `(int)` - The length of time used to generate a counter for the TOTP token calculation.
520
520
  :param pulumi.Input[int] qr_size: `(int)` - The pixel size of the generated square QR code.
@@ -584,7 +584,7 @@ class MfaTotp(pulumi.CustomResource):
584
584
  """
585
585
  The namespace to provision the resource in.
586
586
  The value should not contain leading or trailing forward slashes.
587
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
587
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
588
588
  *Available only for Vault Enterprise*.
589
589
  """
590
590
  return pulumi.get(self, "namespace")
@@ -25,7 +25,7 @@ class SecretBackendArgs:
25
25
  :param pulumi.Input[str] public_key: Specifies the Public API Key used to authenticate with the MongoDB Atlas API.
26
26
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
27
27
  The value should not contain leading or trailing forward slashes.
28
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
28
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
29
29
  *Available only for Vault Enterprise*.
30
30
  """
31
31
  pulumi.set(__self__, "mount", mount)
@@ -76,7 +76,7 @@ class SecretBackendArgs:
76
76
  """
77
77
  The namespace to provision the resource in.
78
78
  The value should not contain leading or trailing forward slashes.
79
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
79
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
80
80
  *Available only for Vault Enterprise*.
81
81
  """
82
82
  return pulumi.get(self, "namespace")
@@ -99,7 +99,7 @@ class _SecretBackendState:
99
99
  :param pulumi.Input[str] mount: Path where the MongoDB Atlas Secrets Engine is mounted.
100
100
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
101
101
  The value should not contain leading or trailing forward slashes.
102
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
102
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
103
103
  *Available only for Vault Enterprise*.
104
104
  :param pulumi.Input[str] path: Path where MongoDB Atlas configuration is located
105
105
  :param pulumi.Input[str] private_key: Specifies the Private API Key used to authenticate with the MongoDB Atlas API.
@@ -134,7 +134,7 @@ class _SecretBackendState:
134
134
  """
135
135
  The namespace to provision the resource in.
136
136
  The value should not contain leading or trailing forward slashes.
137
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
137
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
138
138
  *Available only for Vault Enterprise*.
139
139
  """
140
140
  return pulumi.get(self, "namespace")
@@ -222,7 +222,7 @@ class SecretBackend(pulumi.CustomResource):
222
222
  :param pulumi.Input[str] mount: Path where the MongoDB Atlas Secrets Engine is mounted.
223
223
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
224
224
  The value should not contain leading or trailing forward slashes.
225
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
225
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
226
226
  *Available only for Vault Enterprise*.
227
227
  :param pulumi.Input[str] private_key: Specifies the Private API Key used to authenticate with the MongoDB Atlas API.
228
228
  :param pulumi.Input[str] public_key: Specifies the Public API Key used to authenticate with the MongoDB Atlas API.
@@ -324,7 +324,7 @@ class SecretBackend(pulumi.CustomResource):
324
324
  :param pulumi.Input[str] mount: Path where the MongoDB Atlas Secrets Engine is mounted.
325
325
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
326
326
  The value should not contain leading or trailing forward slashes.
327
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
327
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
328
328
  *Available only for Vault Enterprise*.
329
329
  :param pulumi.Input[str] path: Path where MongoDB Atlas configuration is located
330
330
  :param pulumi.Input[str] private_key: Specifies the Private API Key used to authenticate with the MongoDB Atlas API.
@@ -355,7 +355,7 @@ class SecretBackend(pulumi.CustomResource):
355
355
  """
356
356
  The namespace to provision the resource in.
357
357
  The value should not contain leading or trailing forward slashes.
358
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
358
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
359
359
  *Available only for Vault Enterprise*.
360
360
  """
361
361
  return pulumi.get(self, "namespace")
@@ -35,7 +35,7 @@ class SecretRoleArgs:
35
35
  :param pulumi.Input[str] name: The name of the role.
36
36
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
37
37
  The value should not contain leading or trailing forward slashes.
38
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
38
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
39
39
  *Available only for Vault Enterprise*.
40
40
  :param pulumi.Input[str] organization_id: Unique identifier for the organization to which the target API Key belongs.
41
41
  Required if `project_id` is not set.
@@ -143,7 +143,7 @@ class SecretRoleArgs:
143
143
  """
144
144
  The namespace to provision the resource in.
145
145
  The value should not contain leading or trailing forward slashes.
146
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
146
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
147
147
  *Available only for Vault Enterprise*.
148
148
  """
149
149
  return pulumi.get(self, "namespace")
@@ -226,7 +226,7 @@ class _SecretRoleState:
226
226
  :param pulumi.Input[str] name: The name of the role.
227
227
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
228
228
  The value should not contain leading or trailing forward slashes.
229
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
229
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
230
230
  *Available only for Vault Enterprise*.
231
231
  :param pulumi.Input[str] organization_id: Unique identifier for the organization to which the target API Key belongs.
232
232
  Required if `project_id` is not set.
@@ -325,7 +325,7 @@ class _SecretRoleState:
325
325
  """
326
326
  The namespace to provision the resource in.
327
327
  The value should not contain leading or trailing forward slashes.
328
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
328
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
329
329
  *Available only for Vault Enterprise*.
330
330
  """
331
331
  return pulumi.get(self, "namespace")
@@ -461,7 +461,7 @@ class SecretRole(pulumi.CustomResource):
461
461
  :param pulumi.Input[str] name: The name of the role.
462
462
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
463
463
  The value should not contain leading or trailing forward slashes.
464
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
464
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
465
465
  *Available only for Vault Enterprise*.
466
466
  :param pulumi.Input[str] organization_id: Unique identifier for the organization to which the target API Key belongs.
467
467
  Required if `project_id` is not set.
@@ -600,7 +600,7 @@ class SecretRole(pulumi.CustomResource):
600
600
  :param pulumi.Input[str] name: The name of the role.
601
601
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
602
602
  The value should not contain leading or trailing forward slashes.
603
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
603
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
604
604
  *Available only for Vault Enterprise*.
605
605
  :param pulumi.Input[str] organization_id: Unique identifier for the organization to which the target API Key belongs.
606
606
  Required if `project_id` is not set.
@@ -673,7 +673,7 @@ class SecretRole(pulumi.CustomResource):
673
673
  """
674
674
  The namespace to provision the resource in.
675
675
  The value should not contain leading or trailing forward slashes.
676
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
676
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
677
677
  *Available only for Vault Enterprise*.
678
678
  """
679
679
  return pulumi.get(self, "namespace")