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
@@ -46,7 +46,7 @@ class EndpointArgs:
46
46
  many configuration endpoints. Defaults to false.
47
47
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
48
48
  The value should not contain leading or trailing forward slashes.
49
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
49
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
50
50
  *Available only for Vault Enterprise*.
51
51
  :param pulumi.Input[Sequence[pulumi.Input[str]]] write_fields: - (Optional). A list of fields that should be returned
52
52
  in `write_data_json` and `write_data`. If omitted, data returned by
@@ -151,7 +151,7 @@ class EndpointArgs:
151
151
  """
152
152
  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
  return pulumi.get(self, "namespace")
@@ -212,7 +212,7 @@ class _EndpointState:
212
212
  many configuration endpoints. Defaults to false.
213
213
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
214
214
  The value should not contain leading or trailing forward slashes.
215
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
215
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
216
216
  *Available only for Vault Enterprise*.
217
217
  :param pulumi.Input[str] path: The full logical path at which to write the given
218
218
  data. Consult each backend's documentation to see which endpoints
@@ -319,7 +319,7 @@ class _EndpointState:
319
319
  """
320
320
  The namespace to provision the resource in.
321
321
  The value should not contain leading or trailing forward slashes.
322
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
322
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
323
323
  *Available only for Vault Enterprise*.
324
324
  """
325
325
  return pulumi.get(self, "namespace")
@@ -479,7 +479,7 @@ class Endpoint(pulumi.CustomResource):
479
479
  many configuration endpoints. Defaults to false.
480
480
  :param pulumi.Input[str] namespace: 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
  :param pulumi.Input[str] path: The full logical path at which to write the given
485
485
  data. Consult each backend's documentation to see which endpoints
@@ -644,7 +644,7 @@ class Endpoint(pulumi.CustomResource):
644
644
  many configuration endpoints. Defaults to false.
645
645
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
646
646
  The value should not contain leading or trailing forward slashes.
647
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
647
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
648
648
  *Available only for Vault Enterprise*.
649
649
  :param pulumi.Input[str] path: The full logical path at which to write the given
650
650
  data. Consult each backend's documentation to see which endpoints
@@ -731,7 +731,7 @@ class Endpoint(pulumi.CustomResource):
731
731
  """
732
732
  The namespace to provision the resource in.
733
733
  The value should not contain leading or trailing forward slashes.
734
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
734
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
735
735
  *Available only for Vault Enterprise*.
736
736
  """
737
737
  return pulumi.get(self, "namespace")
@@ -174,7 +174,7 @@ def get_secret(namespace: Optional[str] = None,
174
174
 
175
175
  :param str namespace: The namespace of the target resource.
176
176
  The value should not contain leading or trailing forward slashes.
177
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
177
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
178
178
  *Available only for Vault Enterprise*.
179
179
  :param str path: The full logical path from which to request data.
180
180
  To read data from the "generic" secret backend mounted in Vault by
@@ -233,7 +233,7 @@ def get_secret_output(namespace: Optional[pulumi.Input[Optional[str]]] = None,
233
233
 
234
234
  :param str namespace: The namespace of the target resource.
235
235
  The value should not contain leading or trailing forward slashes.
236
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
236
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
237
237
  *Available only for Vault Enterprise*.
238
238
  :param str path: The full logical path from which to request data.
239
239
  To read data from the "generic" secret backend mounted in Vault by
@@ -37,7 +37,7 @@ class SecretArgs:
37
37
  break drift detection. Defaults to false.
38
38
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
39
39
  The value should not contain leading or trailing forward slashes.
40
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
40
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
41
41
  *Available only for Vault Enterprise*.
42
42
  """
43
43
  pulumi.set(__self__, "data_json", data_json)
@@ -113,7 +113,7 @@ class SecretArgs:
113
113
  """
114
114
  The namespace to provision the resource in.
115
115
  The value should not contain leading or trailing forward slashes.
116
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
116
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
117
117
  *Available only for Vault Enterprise*.
118
118
  """
119
119
  return pulumi.get(self, "namespace")
@@ -149,7 +149,7 @@ class _SecretState:
149
149
  break drift detection. Defaults to false.
150
150
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
151
151
  The value should not contain leading or trailing forward slashes.
152
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
152
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
153
153
  *Available only for Vault Enterprise*.
154
154
  :param pulumi.Input[str] path: The full logical path at which to write the given data.
155
155
  To write data into the "generic" secret backend mounted in Vault by default,
@@ -233,7 +233,7 @@ class _SecretState:
233
233
  """
234
234
  The namespace to provision the resource in.
235
235
  The value should not contain leading or trailing forward slashes.
236
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
236
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
237
237
  *Available only for Vault Enterprise*.
238
238
  """
239
239
  return pulumi.get(self, "namespace")
@@ -292,7 +292,7 @@ class Secret(pulumi.CustomResource):
292
292
  break drift detection. Defaults to false.
293
293
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
294
294
  The value should not contain leading or trailing forward slashes.
295
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
295
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
296
296
  *Available only for Vault Enterprise*.
297
297
  :param pulumi.Input[str] path: The full logical path at which to write the given data.
298
298
  To write data into the "generic" secret backend mounted in Vault by default,
@@ -394,7 +394,7 @@ class Secret(pulumi.CustomResource):
394
394
  break drift detection. Defaults to false.
395
395
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
396
396
  The value should not contain leading or trailing forward slashes.
397
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
397
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
398
398
  *Available only for Vault Enterprise*.
399
399
  :param pulumi.Input[str] path: The full logical path at which to write the given data.
400
400
  To write data into the "generic" secret backend mounted in Vault by default,
@@ -461,7 +461,7 @@ class Secret(pulumi.CustomResource):
461
461
  """
462
462
  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
  """
467
467
  return pulumi.get(self, "namespace")
@@ -164,7 +164,7 @@ def get_auth_backend(namespace: Optional[str] = None,
164
164
 
165
165
  :param str namespace: The namespace of the target resource.
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 str path: The auth backend mount point.
170
170
  """
@@ -206,7 +206,7 @@ def get_auth_backend_output(namespace: Optional[pulumi.Input[Optional[str]]] = N
206
206
 
207
207
  :param str namespace: The namespace of the target resource.
208
208
  The value should not contain leading or trailing forward slashes.
209
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
209
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
210
210
  *Available only for Vault Enterprise*.
211
211
  :param str path: The auth backend mount point.
212
212
  """
@@ -101,10 +101,19 @@ def get_auth_backends(namespace: Optional[str] = None,
101
101
  ```
102
102
  <!--End PulumiCodeChooser -->
103
103
 
104
+ <!--Start PulumiCodeChooser -->
105
+ ```python
106
+ import pulumi
107
+ import pulumi_vault as vault
108
+
109
+ example_filter = vault.get_auth_backends(type="kubernetes")
110
+ ```
111
+ <!--End PulumiCodeChooser -->
112
+
104
113
 
105
114
  :param str namespace: The namespace of the target resource.
106
115
  The value should not contain leading or trailing forward slashes.
107
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
116
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
108
117
  *Available only for Vault Enterprise*.
109
118
  :param str type: The name of the auth method type. Allows filtering of backends returned by type.
110
119
  """
@@ -138,10 +147,19 @@ def get_auth_backends_output(namespace: Optional[pulumi.Input[Optional[str]]] =
138
147
  ```
139
148
  <!--End PulumiCodeChooser -->
140
149
 
150
+ <!--Start PulumiCodeChooser -->
151
+ ```python
152
+ import pulumi
153
+ import pulumi_vault as vault
154
+
155
+ example_filter = vault.get_auth_backends(type="kubernetes")
156
+ ```
157
+ <!--End PulumiCodeChooser -->
158
+
141
159
 
142
160
  :param str namespace: The namespace of the target resource.
143
161
  The value should not contain leading or trailing forward slashes.
144
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
162
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
145
163
  *Available only for Vault Enterprise*.
146
164
  :param str type: The name of the auth method type. Allows filtering of backends returned by type.
147
165
  """
@@ -130,7 +130,7 @@ def get_nomad_access_token(backend: Optional[str] = None,
130
130
  read credentials from, with no leading or trailing `/`s.
131
131
  :param str namespace: The namespace of the target resource.
132
132
  The value should not contain leading or trailing forward slashes.
133
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
133
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
134
134
  *Available only for Vault Enterprise*.
135
135
  :param str role: The name of the Nomad secret backend role to generate
136
136
  a token for, with no leading or trailing `/`s.
@@ -186,7 +186,7 @@ def get_nomad_access_token_output(backend: Optional[pulumi.Input[str]] = None,
186
186
  read credentials from, with no leading or trailing `/`s.
187
187
  :param str namespace: The namespace of the target resource.
188
188
  The value should not contain leading or trailing forward slashes.
189
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
189
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
190
190
  *Available only for Vault Enterprise*.
191
191
  :param str role: The name of the Nomad secret backend role to generate
192
192
  a token for, with no leading or trailing `/`s.
@@ -203,7 +203,7 @@ def get_raft_autopilot_state(namespace: Optional[str] = None,
203
203
 
204
204
  :param str namespace: The namespace of the target resource.
205
205
  The value should not contain leading or trailing forward slashes.
206
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
206
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
207
207
  *Available only for Vault Enterprise*.
208
208
  """
209
209
  __args__ = dict()
@@ -246,7 +246,7 @@ def get_raft_autopilot_state_output(namespace: Optional[pulumi.Input[Optional[st
246
246
 
247
247
  :param str namespace: The namespace of the target resource.
248
248
  The value should not contain leading or trailing forward slashes.
249
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
249
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
250
250
  *Available only for Vault Enterprise*.
251
251
  """
252
252
  ...
@@ -44,7 +44,7 @@ class AuthBackendArgs:
44
44
  See here for more info on [Mount Migration](https://www.vaultproject.io/docs/concepts/mount-migration)
45
45
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
46
46
  The value should not contain leading or trailing forward slashes.
47
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
47
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
48
48
  *Available only for Vault Enterprise*.
49
49
  :param pulumi.Input[int] organization_id: The ID of the organization users must be part of.
50
50
  Vault will attempt to fetch and set this value if it is not provided. (Vault 1.10+)
@@ -168,7 +168,7 @@ class AuthBackendArgs:
168
168
  """
169
169
  The namespace to provision the resource in.
170
170
  The value should not contain leading or trailing forward slashes.
171
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
171
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
172
172
  *Available only for Vault Enterprise*.
173
173
  """
174
174
  return pulumi.get(self, "namespace")
@@ -372,7 +372,7 @@ class _AuthBackendState:
372
372
  See here for more info on [Mount Migration](https://www.vaultproject.io/docs/concepts/mount-migration)
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] organization: The organization configured users must be part of.
378
378
  :param pulumi.Input[int] organization_id: The ID of the organization users must be part of.
@@ -500,7 +500,7 @@ class _AuthBackendState:
500
500
  """
501
501
  The namespace to provision the resource in.
502
502
  The value should not contain leading or trailing forward slashes.
503
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
503
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
504
504
  *Available only for Vault Enterprise*.
505
505
  """
506
506
  return pulumi.get(self, "namespace")
@@ -741,7 +741,7 @@ class AuthBackend(pulumi.CustomResource):
741
741
  See here for more info on [Mount Migration](https://www.vaultproject.io/docs/concepts/mount-migration)
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] organization: The organization configured users must be part of.
747
747
  :param pulumi.Input[int] organization_id: The ID of the organization users must be part of.
@@ -910,7 +910,7 @@ class AuthBackend(pulumi.CustomResource):
910
910
  See here for more info on [Mount Migration](https://www.vaultproject.io/docs/concepts/mount-migration)
911
911
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
912
912
  The value should not contain leading or trailing forward slashes.
913
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
913
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
914
914
  *Available only for Vault Enterprise*.
915
915
  :param pulumi.Input[str] organization: The organization configured users must be part of.
916
916
  :param pulumi.Input[int] organization_id: The ID of the organization users must be part of.
@@ -1009,7 +1009,7 @@ class AuthBackend(pulumi.CustomResource):
1009
1009
  """
1010
1010
  The namespace to provision the resource in.
1011
1011
  The value should not contain leading or trailing forward slashes.
1012
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
1012
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
1013
1013
  *Available only for Vault Enterprise*.
1014
1014
  """
1015
1015
  return pulumi.get(self, "namespace")
@@ -25,7 +25,7 @@ class TeamArgs:
25
25
  if not specified.
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[Sequence[pulumi.Input[str]]] policies: An array of strings specifying the policies to be set on tokens
31
31
  issued using this role.
@@ -69,7 +69,7 @@ class TeamArgs:
69
69
  """
70
70
  The namespace to provision the resource in.
71
71
  The value should not contain leading or trailing forward slashes.
72
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
72
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
73
73
  *Available only for Vault Enterprise*.
74
74
  """
75
75
  return pulumi.get(self, "namespace")
@@ -105,7 +105,7 @@ class _TeamState:
105
105
  if not specified.
106
106
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
107
107
  The value should not contain leading or trailing forward slashes.
108
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
108
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
109
109
  *Available only for Vault Enterprise*.
110
110
  :param pulumi.Input[Sequence[pulumi.Input[str]]] policies: An array of strings specifying the policies to be set on tokens
111
111
  issued using this role.
@@ -139,7 +139,7 @@ class _TeamState:
139
139
  """
140
140
  The namespace to provision the resource in.
141
141
  The value should not contain leading or trailing forward slashes.
142
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
142
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
143
143
  *Available only for Vault Enterprise*.
144
144
  """
145
145
  return pulumi.get(self, "namespace")
@@ -221,7 +221,7 @@ class Team(pulumi.CustomResource):
221
221
  if not specified.
222
222
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
223
223
  The value should not contain leading or trailing forward slashes.
224
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
224
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
225
225
  *Available only for Vault Enterprise*.
226
226
  :param pulumi.Input[Sequence[pulumi.Input[str]]] policies: An array of strings specifying the policies to be set on tokens
227
227
  issued using this role.
@@ -323,7 +323,7 @@ class Team(pulumi.CustomResource):
323
323
  if not specified.
324
324
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
325
325
  The value should not contain leading or trailing forward slashes.
326
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
326
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
327
327
  *Available only for Vault Enterprise*.
328
328
  :param pulumi.Input[Sequence[pulumi.Input[str]]] policies: An array of strings specifying the policies to be set on tokens
329
329
  issued using this role.
@@ -354,7 +354,7 @@ class Team(pulumi.CustomResource):
354
354
  """
355
355
  The namespace to provision the resource in.
356
356
  The value should not contain leading or trailing forward slashes.
357
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
357
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
358
358
  *Available only for Vault Enterprise*.
359
359
  """
360
360
  return pulumi.get(self, "namespace")
@@ -25,7 +25,7 @@ class UserArgs:
25
25
  if not specified.
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[Sequence[pulumi.Input[str]]] policies: An array of strings specifying the policies to be set on tokens issued
31
31
  using this role.
@@ -69,7 +69,7 @@ class UserArgs:
69
69
  """
70
70
  The namespace to provision the resource in.
71
71
  The value should not contain leading or trailing forward slashes.
72
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
72
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
73
73
  *Available only for Vault Enterprise*.
74
74
  """
75
75
  return pulumi.get(self, "namespace")
@@ -105,7 +105,7 @@ class _UserState:
105
105
  if not specified.
106
106
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
107
107
  The value should not contain leading or trailing forward slashes.
108
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
108
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
109
109
  *Available only for Vault Enterprise*.
110
110
  :param pulumi.Input[Sequence[pulumi.Input[str]]] policies: An array of strings specifying the policies to be set on tokens issued
111
111
  using this role.
@@ -139,7 +139,7 @@ class _UserState:
139
139
  """
140
140
  The namespace to provision the resource in.
141
141
  The value should not contain leading or trailing forward slashes.
142
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
142
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
143
143
  *Available only for Vault Enterprise*.
144
144
  """
145
145
  return pulumi.get(self, "namespace")
@@ -221,7 +221,7 @@ class User(pulumi.CustomResource):
221
221
  if not specified.
222
222
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
223
223
  The value should not contain leading or trailing forward slashes.
224
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
224
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
225
225
  *Available only for Vault Enterprise*.
226
226
  :param pulumi.Input[Sequence[pulumi.Input[str]]] policies: An array of strings specifying the policies to be set on tokens issued
227
227
  using this role.
@@ -323,7 +323,7 @@ class User(pulumi.CustomResource):
323
323
  if not specified.
324
324
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
325
325
  The value should not contain leading or trailing forward slashes.
326
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
326
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
327
327
  *Available only for Vault Enterprise*.
328
328
  :param pulumi.Input[Sequence[pulumi.Input[str]]] policies: An array of strings specifying the policies to be set on tokens issued
329
329
  using this role.
@@ -354,7 +354,7 @@ class User(pulumi.CustomResource):
354
354
  """
355
355
  The namespace to provision the resource in.
356
356
  The value should not contain leading or trailing forward slashes.
357
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
357
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
358
358
  *Available only for Vault Enterprise*.
359
359
  """
360
360
  return pulumi.get(self, "namespace")
@@ -28,7 +28,7 @@ class EntityArgs:
28
28
  :param pulumi.Input[str] name: Name of the identity entity to create.
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[Sequence[pulumi.Input[str]]] policies: A list of policies to apply to the entity.
34
34
  """
@@ -99,7 +99,7 @@ class EntityArgs:
99
99
  """
100
100
  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
  """
105
105
  return pulumi.get(self, "namespace")
@@ -138,7 +138,7 @@ class _EntityState:
138
138
  :param pulumi.Input[str] name: Name of the identity entity to create.
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[Sequence[pulumi.Input[str]]] policies: A list of policies to apply to the entity.
144
144
  """
@@ -209,7 +209,7 @@ class _EntityState:
209
209
  """
210
210
  The namespace to provision the resource in.
211
211
  The value should not contain leading or trailing forward slashes.
212
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
212
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
213
213
  *Available only for Vault Enterprise*.
214
214
  """
215
215
  return pulumi.get(self, "namespace")
@@ -275,7 +275,7 @@ class Entity(pulumi.CustomResource):
275
275
  :param pulumi.Input[str] name: Name of the identity entity to create.
276
276
  :param pulumi.Input[str] namespace: 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
  :param pulumi.Input[Sequence[pulumi.Input[str]]] policies: A list of policies to apply to the entity.
281
281
  """
@@ -374,7 +374,7 @@ class Entity(pulumi.CustomResource):
374
374
  :param pulumi.Input[str] name: Name of the identity entity to create.
375
375
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
376
376
  The value should not contain leading or trailing forward slashes.
377
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
377
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
378
378
  *Available only for Vault Enterprise*.
379
379
  :param pulumi.Input[Sequence[pulumi.Input[str]]] policies: A list of policies to apply to the entity.
380
380
  """
@@ -428,7 +428,7 @@ class Entity(pulumi.CustomResource):
428
428
  """
429
429
  The namespace to provision the resource in.
430
430
  The value should not contain leading or trailing forward slashes.
431
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
431
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
432
432
  *Available only for Vault Enterprise*.
433
433
  """
434
434
  return pulumi.get(self, "namespace")
@@ -27,7 +27,7 @@ class EntityAliasArgs:
27
27
  :param pulumi.Input[str] name: Name of the alias. Name should be the identifier of the client in the authentication source. For example, if the alias belongs to userpass backend, the name should be a valid username within userpass backend. If alias belongs to GitHub, it should be the GitHub username.
28
28
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
29
29
  The value should not contain leading or trailing forward slashes.
30
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
30
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
31
31
  *Available only for Vault Enterprise*.
32
32
  """
33
33
  pulumi.set(__self__, "canonical_id", canonical_id)
@@ -93,7 +93,7 @@ class EntityAliasArgs:
93
93
  """
94
94
  The namespace to provision the resource in.
95
95
  The value should not contain leading or trailing forward slashes.
96
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
96
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
97
97
  *Available only for Vault Enterprise*.
98
98
  """
99
99
  return pulumi.get(self, "namespace")
@@ -119,7 +119,7 @@ class _EntityAliasState:
119
119
  :param pulumi.Input[str] name: Name of the alias. Name should be the identifier of the client in the authentication source. For example, if the alias belongs to userpass backend, the name should be a valid username within userpass backend. If alias belongs to GitHub, it should be the GitHub username.
120
120
  :param pulumi.Input[str] namespace: 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
  if canonical_id is not None:
@@ -187,7 +187,7 @@ class _EntityAliasState:
187
187
  """
188
188
  The namespace to provision the resource in.
189
189
  The value should not contain leading or trailing forward slashes.
190
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
190
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
191
191
  *Available only for Vault Enterprise*.
192
192
  """
193
193
  return pulumi.get(self, "namespace")
@@ -238,7 +238,7 @@ class EntityAlias(pulumi.CustomResource):
238
238
  :param pulumi.Input[str] name: Name of the alias. Name should be the identifier of the client in the authentication source. For example, if the alias belongs to userpass backend, the name should be a valid username within userpass backend. If alias belongs to GitHub, it should be the GitHub username.
239
239
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
240
240
  The value should not contain leading or trailing forward slashes.
241
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
241
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
242
242
  *Available only for Vault Enterprise*.
243
243
  """
244
244
  ...
@@ -335,7 +335,7 @@ class EntityAlias(pulumi.CustomResource):
335
335
  :param pulumi.Input[str] name: Name of the alias. Name should be the identifier of the client in the authentication source. For example, if the alias belongs to userpass backend, the name should be a valid username within userpass backend. If alias belongs to GitHub, it should be the GitHub username.
336
336
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
337
337
  The value should not contain leading or trailing forward slashes.
338
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
338
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
339
339
  *Available only for Vault Enterprise*.
340
340
  """
341
341
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
@@ -387,7 +387,7 @@ class EntityAlias(pulumi.CustomResource):
387
387
  """
388
388
  The namespace to provision the resource in.
389
389
  The value should not contain leading or trailing forward slashes.
390
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
390
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
391
391
  *Available only for Vault Enterprise*.
392
392
  """
393
393
  return pulumi.get(self, "namespace")