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
@@ -24,7 +24,7 @@ class AuthBackendLoginArgs:
24
24
  :param pulumi.Input[str] backend: The unique path of the Vault backend to log in with.
25
25
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
26
26
  The value should not contain leading or trailing forward slashes.
27
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
27
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
28
28
  *Available only for Vault Enterprise*.
29
29
  :param pulumi.Input[str] secret_id: The secret ID of the role to log in with. Required
30
30
  unless `bind_secret_id` is set to false on the role.
@@ -67,7 +67,7 @@ class AuthBackendLoginArgs:
67
67
  """
68
68
  The namespace to provision the resource in.
69
69
  The value should not contain leading or trailing forward slashes.
70
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
70
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
71
71
  *Available only for Vault Enterprise*.
72
72
  """
73
73
  return pulumi.get(self, "namespace")
@@ -114,7 +114,7 @@ class _AuthBackendLoginState:
114
114
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] metadata: The metadata associated with the token.
115
115
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
116
116
  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).
117
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
118
118
  *Available only for Vault Enterprise*.
119
119
  :param pulumi.Input[Sequence[pulumi.Input[str]]] policies: A list of policies applied to the token.
120
120
  :param pulumi.Input[bool] renewable: Whether the token is renewable or not.
@@ -223,7 +223,7 @@ class _AuthBackendLoginState:
223
223
  """
224
224
  The namespace to provision the resource in.
225
225
  The value should not contain leading or trailing forward slashes.
226
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
226
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
227
227
  *Available only for Vault Enterprise*.
228
228
  """
229
229
  return pulumi.get(self, "namespace")
@@ -328,7 +328,7 @@ class AuthBackendLogin(pulumi.CustomResource):
328
328
  :param pulumi.Input[str] backend: The unique path of the Vault backend to log in with.
329
329
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
330
330
  The value should not contain leading or trailing forward slashes.
331
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
331
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
332
332
  *Available only for Vault Enterprise*.
333
333
  :param pulumi.Input[str] role_id: The ID of the role to log in with.
334
334
  :param pulumi.Input[str] secret_id: The secret ID of the role to log in with. Required
@@ -450,7 +450,7 @@ class AuthBackendLogin(pulumi.CustomResource):
450
450
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] metadata: The metadata associated with the token.
451
451
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
452
452
  The value should not contain leading or trailing forward slashes.
453
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
453
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
454
454
  *Available only for Vault Enterprise*.
455
455
  :param pulumi.Input[Sequence[pulumi.Input[str]]] policies: A list of policies applied to the token.
456
456
  :param pulumi.Input[bool] renewable: Whether the token is renewable or not.
@@ -529,7 +529,7 @@ class AuthBackendLogin(pulumi.CustomResource):
529
529
  """
530
530
  The namespace to provision the resource in.
531
531
  The value should not contain leading or trailing forward slashes.
532
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
532
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
533
533
  *Available only for Vault Enterprise*.
534
534
  """
535
535
  return pulumi.get(self, "namespace")
@@ -40,7 +40,7 @@ class AuthBackendRoleArgs:
40
40
  presented when logging in using this AppRole. Defaults to `true`.
41
41
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
42
42
  The value should not contain leading or trailing forward slashes.
43
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
43
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
44
44
  *Available only for Vault Enterprise*.
45
45
  :param pulumi.Input[str] role_id: The RoleID of this role. If not specified, one will be
46
46
  auto-generated.
@@ -156,7 +156,7 @@ class AuthBackendRoleArgs:
156
156
  """
157
157
  The namespace to provision the resource in.
158
158
  The value should not contain leading or trailing forward slashes.
159
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
159
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
160
160
  *Available only for Vault Enterprise*.
161
161
  """
162
162
  return pulumi.get(self, "namespace")
@@ -372,7 +372,7 @@ class _AuthBackendRoleState:
372
372
  presented when logging in using this AppRole. Defaults to `true`.
373
373
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
374
374
  The value should not contain leading or trailing forward slashes.
375
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
375
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
376
376
  *Available only for Vault Enterprise*.
377
377
  :param pulumi.Input[str] role_id: The RoleID of this role. If not specified, one will be
378
378
  auto-generated.
@@ -478,7 +478,7 @@ class _AuthBackendRoleState:
478
478
  """
479
479
  The namespace to provision the resource in.
480
480
  The value should not contain leading or trailing forward slashes.
481
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
481
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
482
482
  *Available only for Vault Enterprise*.
483
483
  """
484
484
  return pulumi.get(self, "namespace")
@@ -741,7 +741,7 @@ class AuthBackendRole(pulumi.CustomResource):
741
741
  presented when logging in using this AppRole. Defaults to `true`.
742
742
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
743
743
  The value should not contain leading or trailing forward slashes.
744
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
744
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
745
745
  *Available only for Vault Enterprise*.
746
746
  :param pulumi.Input[str] role_id: The RoleID of this role. If not specified, one will be
747
747
  auto-generated.
@@ -918,7 +918,7 @@ class AuthBackendRole(pulumi.CustomResource):
918
918
  presented when logging in using this AppRole. Defaults to `true`.
919
919
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
920
920
  The value should not contain leading or trailing forward slashes.
921
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
921
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
922
922
  *Available only for Vault Enterprise*.
923
923
  :param pulumi.Input[str] role_id: The RoleID of this role. If not specified, one will be
924
924
  auto-generated.
@@ -1004,7 +1004,7 @@ class AuthBackendRole(pulumi.CustomResource):
1004
1004
  """
1005
1005
  The namespace to provision the resource in.
1006
1006
  The value should not contain leading or trailing forward slashes.
1007
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
1007
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
1008
1008
  *Available only for Vault Enterprise*.
1009
1009
  """
1010
1010
  return pulumi.get(self, "namespace")
@@ -32,7 +32,7 @@ class AuthBackendRoleSecretIdArgs:
32
32
  key-value pairs to be set on tokens issued with this SecretID.
33
33
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
34
34
  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).
35
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
36
36
  *Available only for Vault Enterprise*.
37
37
  :param pulumi.Input[str] secret_id: The SecretID to be created. If set, uses "Push"
38
38
  mode. Defaults to Vault auto-generating SecretIDs.
@@ -116,7 +116,7 @@ class AuthBackendRoleSecretIdArgs:
116
116
  """
117
117
  The namespace to provision the resource in.
118
118
  The value should not contain leading or trailing forward slashes.
119
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
119
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
120
120
  *Available only for Vault Enterprise*.
121
121
  """
122
122
  return pulumi.get(self, "namespace")
@@ -192,7 +192,7 @@ class _AuthBackendRoleSecretIdState:
192
192
  key-value pairs to be set on tokens issued with this SecretID.
193
193
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
194
194
  The value should not contain leading or trailing forward slashes.
195
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
195
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
196
196
  *Available only for Vault Enterprise*.
197
197
  :param pulumi.Input[str] role_name: The name of the role to create the SecretID for.
198
198
  :param pulumi.Input[str] secret_id: The SecretID to be created. If set, uses "Push"
@@ -287,7 +287,7 @@ class _AuthBackendRoleSecretIdState:
287
287
  """
288
288
  The namespace to provision the resource in.
289
289
  The value should not contain leading or trailing forward slashes.
290
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
290
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
291
291
  *Available only for Vault Enterprise*.
292
292
  """
293
293
  return pulumi.get(self, "namespace")
@@ -430,7 +430,7 @@ class AuthBackendRoleSecretId(pulumi.CustomResource):
430
430
  key-value pairs to be set on tokens issued with this SecretID.
431
431
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
432
432
  The value should not contain leading or trailing forward slashes.
433
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
433
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
434
434
  *Available only for Vault Enterprise*.
435
435
  :param pulumi.Input[str] role_name: The name of the role to create the SecretID for.
436
436
  :param pulumi.Input[str] secret_id: The SecretID to be created. If set, uses "Push"
@@ -565,7 +565,7 @@ class AuthBackendRoleSecretId(pulumi.CustomResource):
565
565
  key-value pairs to be set on tokens issued with this SecretID.
566
566
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
567
567
  The value should not contain leading or trailing forward slashes.
568
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
568
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
569
569
  *Available only for Vault Enterprise*.
570
570
  :param pulumi.Input[str] role_name: The name of the role to create the SecretID for.
571
571
  :param pulumi.Input[str] secret_id: The SecretID to be created. If set, uses "Push"
@@ -638,7 +638,7 @@ class AuthBackendRoleSecretId(pulumi.CustomResource):
638
638
  """
639
639
  The namespace to provision the resource in.
640
640
  The value should not contain leading or trailing forward slashes.
641
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
641
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
642
642
  *Available only for Vault Enterprise*.
643
643
  """
644
644
  return pulumi.get(self, "namespace")
pulumi_vault/audit.py CHANGED
@@ -30,7 +30,7 @@ class AuditArgs:
30
30
  :param pulumi.Input[bool] local: Specifies if the audit device is a local only. Local audit devices are not replicated nor (if a secondary) removed by replication.
31
31
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
32
32
  The value should not contain leading or trailing forward slashes.
33
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
33
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
34
34
  *Available only for Vault Enterprise*.
35
35
  :param pulumi.Input[str] path: The path to mount the audit device. This defaults to the type.
36
36
  """
@@ -101,7 +101,7 @@ class AuditArgs:
101
101
  """
102
102
  The namespace to provision the resource in.
103
103
  The value should not contain leading or trailing forward slashes.
104
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
104
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
105
105
  *Available only for Vault Enterprise*.
106
106
  """
107
107
  return pulumi.get(self, "namespace")
@@ -138,7 +138,7 @@ class _AuditState:
138
138
  :param pulumi.Input[bool] local: Specifies if the audit device is a local only. Local audit devices are not replicated nor (if a secondary) removed by replication.
139
139
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
140
140
  The value should not contain leading or trailing forward slashes.
141
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
141
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
142
142
  *Available only for Vault Enterprise*.
143
143
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] options: Configuration options to pass to the audit device itself.
144
144
 
@@ -189,7 +189,7 @@ class _AuditState:
189
189
  """
190
190
  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
  """
195
195
  return pulumi.get(self, "namespace")
@@ -300,7 +300,7 @@ class Audit(pulumi.CustomResource):
300
300
  :param pulumi.Input[bool] local: Specifies if the audit device is a local only. Local audit devices are not replicated nor (if a secondary) removed by replication.
301
301
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
302
302
  The value should not contain leading or trailing forward slashes.
303
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
303
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
304
304
  *Available only for Vault Enterprise*.
305
305
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] options: Configuration options to pass to the audit device itself.
306
306
 
@@ -426,7 +426,7 @@ class Audit(pulumi.CustomResource):
426
426
  :param pulumi.Input[bool] local: Specifies if the audit device is a local only. Local audit devices are not replicated nor (if a secondary) removed by replication.
427
427
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
428
428
  The value should not contain leading or trailing forward slashes.
429
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
429
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
430
430
  *Available only for Vault Enterprise*.
431
431
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] options: Configuration options to pass to the audit device itself.
432
432
 
@@ -468,7 +468,7 @@ class Audit(pulumi.CustomResource):
468
468
  """
469
469
  The namespace to provision the resource in.
470
470
  The value should not contain leading or trailing forward slashes.
471
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
471
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
472
472
  *Available only for Vault Enterprise*.
473
473
  """
474
474
  return pulumi.get(self, "namespace")
@@ -32,7 +32,7 @@ class AuthBackendArgs:
32
32
  :param pulumi.Input[bool] local: Specifies if the auth method is local only.
33
33
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
34
34
  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).
35
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
36
36
  *Available only for Vault Enterprise*.
37
37
  :param pulumi.Input[str] path: The path to mount the auth method — this defaults to the name of the type.
38
38
  :param pulumi.Input['AuthBackendTuneArgs'] tune: Extra configuration block. Structure is documented below.
@@ -108,7 +108,7 @@ class AuthBackendArgs:
108
108
  """
109
109
  The namespace to provision the resource in.
110
110
  The value should not contain leading or trailing forward slashes.
111
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
111
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
112
112
  *Available only for Vault Enterprise*.
113
113
  """
114
114
  return pulumi.get(self, "namespace")
@@ -164,7 +164,7 @@ class _AuthBackendState:
164
164
  :param pulumi.Input[bool] local: Specifies if the auth method is local only.
165
165
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
166
166
  The value should not contain leading or trailing forward slashes.
167
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
167
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
168
168
  *Available only for Vault Enterprise*.
169
169
  :param pulumi.Input[str] path: The path to mount the auth method — this defaults to the name of the type.
170
170
  :param pulumi.Input['AuthBackendTuneArgs'] tune: Extra configuration block. Structure is documented below.
@@ -244,7 +244,7 @@ class _AuthBackendState:
244
244
  """
245
245
  The namespace to provision the resource in.
246
246
  The value should not contain leading or trailing forward slashes.
247
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
247
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
248
248
  *Available only for Vault Enterprise*.
249
249
  """
250
250
  return pulumi.get(self, "namespace")
@@ -322,7 +322,7 @@ class AuthBackend(pulumi.CustomResource):
322
322
  :param pulumi.Input[bool] local: Specifies if the auth method is local only.
323
323
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
324
324
  The value should not contain leading or trailing forward slashes.
325
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
325
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
326
326
  *Available only for Vault Enterprise*.
327
327
  :param pulumi.Input[str] path: The path to mount the auth method — this defaults to the name of the type.
328
328
  :param pulumi.Input[pulumi.InputType['AuthBackendTuneArgs']] tune: Extra configuration block. Structure is documented below.
@@ -418,7 +418,7 @@ class AuthBackend(pulumi.CustomResource):
418
418
  :param pulumi.Input[bool] local: Specifies if the auth method is local only.
419
419
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
420
420
  The value should not contain leading or trailing forward slashes.
421
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
421
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
422
422
  *Available only for Vault Enterprise*.
423
423
  :param pulumi.Input[str] path: The path to mount the auth method — this defaults to the name of the type.
424
424
  :param pulumi.Input[pulumi.InputType['AuthBackendTuneArgs']] tune: Extra configuration block. Structure is documented below.
@@ -479,7 +479,7 @@ class AuthBackend(pulumi.CustomResource):
479
479
  """
480
480
  The namespace to provision the resource in.
481
481
  The value should not contain leading or trailing forward slashes.
482
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
482
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
483
483
  *Available only for Vault Enterprise*.
484
484
  """
485
485
  return pulumi.get(self, "namespace")
@@ -30,7 +30,7 @@ class AuthBackendCertArgs:
30
30
  mounted at. Defaults to `aws`.
31
31
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
32
32
  The value should not contain leading or trailing forward slashes.
33
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
33
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
34
34
  *Available only for Vault Enterprise*.
35
35
  :param pulumi.Input[str] type: Either "pkcs7" or "identity", indicating the type of
36
36
  document which can be verified using the given certificate. Defaults to
@@ -91,7 +91,7 @@ class AuthBackendCertArgs:
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")
@@ -134,7 +134,7 @@ class _AuthBackendCertState:
134
134
  :param pulumi.Input[str] cert_name: The name of the certificate.
135
135
  :param pulumi.Input[str] namespace: 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
  :param pulumi.Input[str] type: Either "pkcs7" or "identity", indicating the type of
140
140
  document which can be verified using the given certificate. Defaults to
@@ -197,7 +197,7 @@ class _AuthBackendCertState:
197
197
  """
198
198
  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
  """
203
203
  return pulumi.get(self, "namespace")
@@ -254,7 +254,7 @@ class AuthBackendCert(pulumi.CustomResource):
254
254
  :param pulumi.Input[str] cert_name: The name of the certificate.
255
255
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
256
256
  The value should not contain leading or trailing forward slashes.
257
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
257
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
258
258
  *Available only for Vault Enterprise*.
259
259
  :param pulumi.Input[str] type: Either "pkcs7" or "identity", indicating the type of
260
260
  document which can be verified using the given certificate. Defaults to
@@ -346,7 +346,7 @@ class AuthBackendCert(pulumi.CustomResource):
346
346
  :param pulumi.Input[str] cert_name: The name of the certificate.
347
347
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
348
348
  The value should not contain leading or trailing forward slashes.
349
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
349
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
350
350
  *Available only for Vault Enterprise*.
351
351
  :param pulumi.Input[str] type: Either "pkcs7" or "identity", indicating the type of
352
352
  document which can be verified using the given certificate. Defaults to
@@ -397,7 +397,7 @@ class AuthBackendCert(pulumi.CustomResource):
397
397
  """
398
398
  The namespace to provision the resource in.
399
399
  The value should not contain leading or trailing forward slashes.
400
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
400
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
401
401
  *Available only for Vault Enterprise*.
402
402
  """
403
403
  return pulumi.get(self, "namespace")
@@ -39,7 +39,7 @@ class AuthBackendClientArgs:
39
39
  that are used in the IAM auth method.
40
40
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
41
41
  The value should not contain leading or trailing forward slashes.
42
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
42
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
43
43
  *Available only for Vault Enterprise*.
44
44
  :param pulumi.Input[str] secret_key: The AWS secret key that Vault should use for the
45
45
  auth backend.
@@ -146,7 +146,7 @@ class AuthBackendClientArgs:
146
146
  """
147
147
  The namespace to provision the resource in.
148
148
  The value should not contain leading or trailing forward slashes.
149
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
149
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
150
150
  *Available only for Vault Enterprise*.
151
151
  """
152
152
  return pulumi.get(self, "namespace")
@@ -239,7 +239,7 @@ class _AuthBackendClientState:
239
239
  that are used in the IAM auth method.
240
240
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
241
241
  The value should not contain leading or trailing forward slashes.
242
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
242
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
243
243
  *Available only for Vault Enterprise*.
244
244
  :param pulumi.Input[str] secret_key: The AWS secret key that Vault should use for the
245
245
  auth backend.
@@ -346,7 +346,7 @@ class _AuthBackendClientState:
346
346
  """
347
347
  The namespace to provision the resource in.
348
348
  The value should not contain leading or trailing forward slashes.
349
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
349
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
350
350
  *Available only for Vault Enterprise*.
351
351
  """
352
352
  return pulumi.get(self, "namespace")
@@ -466,7 +466,7 @@ class AuthBackendClient(pulumi.CustomResource):
466
466
  that are used in the IAM auth method.
467
467
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
468
468
  The value should not contain leading or trailing forward slashes.
469
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
469
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
470
470
  *Available only for Vault Enterprise*.
471
471
  :param pulumi.Input[str] secret_key: The AWS secret key that Vault should use for the
472
472
  auth backend.
@@ -596,7 +596,7 @@ class AuthBackendClient(pulumi.CustomResource):
596
596
  that are used in the IAM auth method.
597
597
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
598
598
  The value should not contain leading or trailing forward slashes.
599
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
599
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
600
600
  *Available only for Vault Enterprise*.
601
601
  :param pulumi.Input[str] secret_key: The AWS secret key that Vault should use for the
602
602
  auth backend.
@@ -678,7 +678,7 @@ class AuthBackendClient(pulumi.CustomResource):
678
678
  """
679
679
  The namespace to provision the resource in.
680
680
  The value should not contain leading or trailing forward slashes.
681
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
681
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
682
682
  *Available only for Vault Enterprise*.
683
683
  """
684
684
  return pulumi.get(self, "namespace")
@@ -33,7 +33,7 @@ class AuthBackendConfigIdentityArgs:
33
33
  added to both audit logs, and on the `iam_alias`
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
  """
39
39
  if backend is not None:
@@ -119,7 +119,7 @@ class AuthBackendConfigIdentityArgs:
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")
@@ -151,7 +151,7 @@ class _AuthBackendConfigIdentityState:
151
151
  added to both audit logs, and on the `iam_alias`
152
152
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
153
153
  The value should not contain leading or trailing forward slashes.
154
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
154
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
155
155
  *Available only for Vault Enterprise*.
156
156
  """
157
157
  if backend is not None:
@@ -237,7 +237,7 @@ class _AuthBackendConfigIdentityState:
237
237
  """
238
238
  The namespace to provision the resource in.
239
239
  The value should not contain leading or trailing forward slashes.
240
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
240
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
241
241
  *Available only for Vault Enterprise*.
242
242
  """
243
243
  return pulumi.get(self, "namespace")
@@ -303,7 +303,7 @@ class AuthBackendConfigIdentity(pulumi.CustomResource):
303
303
  added to both audit logs, and on the `iam_alias`
304
304
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
305
305
  The value should not contain leading or trailing forward slashes.
306
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
306
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
307
307
  *Available only for Vault Enterprise*.
308
308
  """
309
309
  ...
@@ -413,7 +413,7 @@ class AuthBackendConfigIdentity(pulumi.CustomResource):
413
413
  added to both audit logs, and on the `iam_alias`
414
414
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
415
415
  The value should not contain leading or trailing forward slashes.
416
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
416
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
417
417
  *Available only for Vault Enterprise*.
418
418
  """
419
419
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
@@ -478,7 +478,7 @@ class AuthBackendConfigIdentity(pulumi.CustomResource):
478
478
  """
479
479
  The namespace to provision the resource in.
480
480
  The value should not contain leading or trailing forward slashes.
481
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
481
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
482
482
  *Available only for Vault Enterprise*.
483
483
  """
484
484
  return pulumi.get(self, "namespace")
@@ -25,7 +25,7 @@ class AuthBackendIdentityWhitelistArgs:
25
25
  tidying of the identity-whitelist entries.
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
  :param pulumi.Input[int] safety_buffer: The amount of extra time, in minutes, that must
31
31
  have passed beyond the roletag expiration, before it is removed from the
@@ -71,7 +71,7 @@ class AuthBackendIdentityWhitelistArgs:
71
71
  """
72
72
  The namespace to provision the resource in.
73
73
  The value should not contain leading or trailing forward slashes.
74
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
74
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
75
75
  *Available only for Vault Enterprise*.
76
76
  """
77
77
  return pulumi.get(self, "namespace")
@@ -109,7 +109,7 @@ class _AuthBackendIdentityWhitelistState:
109
109
  tidying of the identity-whitelist entries.
110
110
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
111
111
  The value should not contain leading or trailing forward slashes.
112
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
112
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
113
113
  *Available only for Vault Enterprise*.
114
114
  :param pulumi.Input[int] safety_buffer: The amount of extra time, in minutes, that must
115
115
  have passed beyond the roletag expiration, before it is removed from the
@@ -155,7 +155,7 @@ class _AuthBackendIdentityWhitelistState:
155
155
  """
156
156
  The namespace to provision the resource in.
157
157
  The value should not contain leading or trailing forward slashes.
158
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
158
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
159
159
  *Available only for Vault Enterprise*.
160
160
  """
161
161
  return pulumi.get(self, "namespace")
@@ -224,7 +224,7 @@ class AuthBackendIdentityWhitelist(pulumi.CustomResource):
224
224
  tidying of the identity-whitelist entries.
225
225
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
226
226
  The value should not contain leading or trailing forward slashes.
227
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
227
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
228
228
  *Available only for Vault Enterprise*.
229
229
  :param pulumi.Input[int] safety_buffer: The amount of extra time, in minutes, that must
230
230
  have passed beyond the roletag expiration, before it is removed from the
@@ -322,7 +322,7 @@ class AuthBackendIdentityWhitelist(pulumi.CustomResource):
322
322
  tidying of the identity-whitelist entries.
323
323
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
324
324
  The value should not contain leading or trailing forward slashes.
325
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
325
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
326
326
  *Available only for Vault Enterprise*.
327
327
  :param pulumi.Input[int] safety_buffer: The amount of extra time, in minutes, that must
328
328
  have passed beyond the roletag expiration, before it is removed from the
@@ -361,7 +361,7 @@ class AuthBackendIdentityWhitelist(pulumi.CustomResource):
361
361
  """
362
362
  The namespace to provision the resource in.
363
363
  The value should not contain leading or trailing forward slashes.
364
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
364
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
365
365
  *Available only for Vault Enterprise*.
366
366
  """
367
367
  return pulumi.get(self, "namespace")