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
@@ -114,7 +114,7 @@ def get_secrets_list(namespace: Optional[str] = None,
114
114
 
115
115
  :param str namespace: The namespace of the target resource.
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 str path: Full KV-V1 path where secrets will be listed.
120
120
  """
@@ -172,7 +172,7 @@ def get_secrets_list_output(namespace: Optional[pulumi.Input[Optional[str]]] = N
172
172
 
173
173
  :param str namespace: The namespace of the target resource.
174
174
  The value should not contain leading or trailing forward slashes.
175
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
175
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
176
176
  *Available only for Vault Enterprise*.
177
177
  :param str path: Full KV-V1 path where secrets will be listed.
178
178
  """
@@ -148,7 +148,7 @@ def get_secrets_list_v2(mount: Optional[str] = None,
148
148
  the name is `foo/bar/baz`.
149
149
  :param str namespace: The namespace of the target resource.
150
150
  The value should not contain leading or trailing forward slashes.
151
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
151
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
152
152
  *Available only for Vault Enterprise*.
153
153
  """
154
154
  __args__ = dict()
@@ -221,7 +221,7 @@ def get_secrets_list_v2_output(mount: Optional[pulumi.Input[str]] = None,
221
221
  the name is `foo/bar/baz`.
222
222
  :param str namespace: The namespace of the target resource.
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
  """
227
227
  ...
pulumi_vault/kv/secret.py CHANGED
@@ -24,7 +24,7 @@ class SecretArgs:
24
24
  :param pulumi.Input[str] path: Full path of the KV-V1 secret.
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
  """
30
30
  pulumi.set(__self__, "data_json", data_json)
@@ -63,7 +63,7 @@ class SecretArgs:
63
63
  """
64
64
  The namespace to provision the resource in.
65
65
  The value should not contain leading or trailing forward slashes.
66
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
66
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
67
67
  *Available only for Vault Enterprise*.
68
68
  """
69
69
  return pulumi.get(self, "namespace")
@@ -90,7 +90,7 @@ class _SecretState:
90
90
  written as the secret data at the given path.
91
91
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
92
92
  The value should not contain leading or trailing forward slashes.
93
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
93
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
94
94
  *Available only for Vault Enterprise*.
95
95
  :param pulumi.Input[str] path: Full path of the KV-V1 secret.
96
96
  """
@@ -137,7 +137,7 @@ class _SecretState:
137
137
  """
138
138
  The namespace to provision the resource in.
139
139
  The value should not contain leading or trailing forward slashes.
140
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
140
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
141
141
  *Available only for Vault Enterprise*.
142
142
  """
143
143
  return pulumi.get(self, "namespace")
@@ -219,7 +219,7 @@ class Secret(pulumi.CustomResource):
219
219
  written as the secret data at the given path.
220
220
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
221
221
  The value should not contain leading or trailing forward slashes.
222
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
222
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
223
223
  *Available only for Vault Enterprise*.
224
224
  :param pulumi.Input[str] path: Full path of the KV-V1 secret.
225
225
  """
@@ -340,7 +340,7 @@ class Secret(pulumi.CustomResource):
340
340
  written as the secret data at the given path.
341
341
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
342
342
  The value should not contain leading or trailing forward slashes.
343
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
343
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
344
344
  *Available only for Vault Enterprise*.
345
345
  :param pulumi.Input[str] path: Full path of the KV-V1 secret.
346
346
  """
@@ -380,7 +380,7 @@ class Secret(pulumi.CustomResource):
380
380
  """
381
381
  The namespace to provision the resource in.
382
382
  The value should not contain leading or trailing forward slashes.
383
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
383
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
384
384
  *Available only for Vault Enterprise*.
385
385
  """
386
386
  return pulumi.get(self, "namespace")
@@ -29,7 +29,7 @@ class SecretBackendV2Args:
29
29
  :param pulumi.Input[int] max_versions: The number of versions to keep per key.
30
30
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
31
31
  The value should not contain leading or trailing forward slashes.
32
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
32
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
33
33
  *Available only for Vault Enterprise*.
34
34
  """
35
35
  pulumi.set(__self__, "mount", mount)
@@ -98,7 +98,7 @@ class SecretBackendV2Args:
98
98
  """
99
99
  The namespace to provision the resource in.
100
100
  The value should not contain leading or trailing forward slashes.
101
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
101
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
102
102
  *Available only for Vault Enterprise*.
103
103
  """
104
104
  return pulumi.get(self, "namespace")
@@ -126,7 +126,7 @@ class _SecretBackendV2State:
126
126
  :param pulumi.Input[str] mount: Path where KV-V2 engine is mounted.
127
127
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
128
128
  The value should not contain leading or trailing forward slashes.
129
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
129
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
130
130
  *Available only for Vault Enterprise*.
131
131
  """
132
132
  if cas_required is not None:
@@ -196,7 +196,7 @@ class _SecretBackendV2State:
196
196
  """
197
197
  The namespace to provision the resource in.
198
198
  The value should not contain leading or trailing forward slashes.
199
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
199
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
200
200
  *Available only for Vault Enterprise*.
201
201
  """
202
202
  return pulumi.get(self, "namespace")
@@ -272,7 +272,7 @@ class SecretBackendV2(pulumi.CustomResource):
272
272
  :param pulumi.Input[str] mount: Path where KV-V2 engine is mounted.
273
273
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
274
274
  The value should not contain leading or trailing forward slashes.
275
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
275
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
276
276
  *Available only for Vault Enterprise*.
277
277
  """
278
278
  ...
@@ -392,7 +392,7 @@ class SecretBackendV2(pulumi.CustomResource):
392
392
  :param pulumi.Input[str] mount: Path where KV-V2 engine is mounted.
393
393
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
394
394
  The value should not contain leading or trailing forward slashes.
395
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
395
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
396
396
  *Available only for Vault Enterprise*.
397
397
  """
398
398
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
@@ -446,7 +446,7 @@ class SecretBackendV2(pulumi.CustomResource):
446
446
  """
447
447
  The namespace to provision the resource in.
448
448
  The value should not contain leading or trailing forward slashes.
449
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
449
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
450
450
  *Available only for Vault Enterprise*.
451
451
  """
452
452
  return pulumi.get(self, "namespace")
@@ -47,7 +47,7 @@ class SecretV2Args:
47
47
  the name is `foo/bar/baz`.
48
48
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
49
49
  The value should not contain leading or trailing forward slashes.
50
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
50
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
51
51
  *Available only for Vault Enterprise*.
52
52
  :param pulumi.Input[Mapping[str, Any]] options: An object that holds option settings.
53
53
  """
@@ -169,7 +169,7 @@ class SecretV2Args:
169
169
  """
170
170
  The namespace to provision the resource in.
171
171
  The value should not contain leading or trailing forward slashes.
172
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
172
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
173
173
  *Available only for Vault Enterprise*.
174
174
  """
175
175
  return pulumi.get(self, "namespace")
@@ -233,7 +233,7 @@ class _SecretV2State:
233
233
  the name is `foo/bar/baz`.
234
234
  :param pulumi.Input[str] namespace: 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
  :param pulumi.Input[Mapping[str, Any]] options: An object that holds option settings.
239
239
  :param pulumi.Input[str] path: Full path where the KV-V2 secret will be written.
@@ -391,7 +391,7 @@ class _SecretV2State:
391
391
  """
392
392
  The namespace to provision the resource in.
393
393
  The value should not contain leading or trailing forward slashes.
394
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
394
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
395
395
  *Available only for Vault Enterprise*.
396
396
  """
397
397
  return pulumi.get(self, "namespace")
@@ -528,7 +528,7 @@ class SecretV2(pulumi.CustomResource):
528
528
  the name is `foo/bar/baz`.
529
529
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
530
530
  The value should not contain leading or trailing forward slashes.
531
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
531
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
532
532
  *Available only for Vault Enterprise*.
533
533
  :param pulumi.Input[Mapping[str, Any]] options: An object that holds option settings.
534
534
  """
@@ -709,7 +709,7 @@ class SecretV2(pulumi.CustomResource):
709
709
  the name is `foo/bar/baz`.
710
710
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
711
711
  The value should not contain leading or trailing forward slashes.
712
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
712
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
713
713
  *Available only for Vault Enterprise*.
714
714
  :param pulumi.Input[Mapping[str, Any]] options: An object that holds option settings.
715
715
  :param pulumi.Input[str] path: Full path where the KV-V2 secret will be written.
@@ -824,7 +824,7 @@ class SecretV2(pulumi.CustomResource):
824
824
  """
825
825
  The namespace to provision the resource in.
826
826
  The value should not contain leading or trailing forward slashes.
827
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
827
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
828
828
  *Available only for Vault Enterprise*.
829
829
  """
830
830
  return pulumi.get(self, "namespace")
@@ -72,7 +72,7 @@ class AuthBackendArgs:
72
72
  *Available only for Vault 1.11.11+, 1.12.7+, and 1.13.3+*.
73
73
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
74
74
  The value should not contain leading or trailing forward slashes.
75
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
75
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
76
76
  *Available only for Vault Enterprise*.
77
77
  :param pulumi.Input[str] path: Path to mount the LDAP auth backend under
78
78
  :param pulumi.Input[bool] starttls: Control use of TLS when conecting to LDAP
@@ -387,7 +387,7 @@ class AuthBackendArgs:
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")
@@ -700,7 +700,7 @@ class _AuthBackendState:
700
700
  *Available only for Vault 1.11.11+, 1.12.7+, and 1.13.3+*.
701
701
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
702
702
  The value should not contain leading or trailing forward slashes.
703
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
703
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
704
704
  *Available only for Vault Enterprise*.
705
705
  :param pulumi.Input[str] path: Path to mount the LDAP auth backend under
706
706
  :param pulumi.Input[bool] starttls: Control use of TLS when conecting to LDAP
@@ -1019,7 +1019,7 @@ class _AuthBackendState:
1019
1019
  """
1020
1020
  The namespace to provision the resource in.
1021
1021
  The value should not contain leading or trailing forward slashes.
1022
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
1022
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
1023
1023
  *Available only for Vault Enterprise*.
1024
1024
  """
1025
1025
  return pulumi.get(self, "namespace")
@@ -1375,7 +1375,7 @@ class AuthBackend(pulumi.CustomResource):
1375
1375
  *Available only for Vault 1.11.11+, 1.12.7+, and 1.13.3+*.
1376
1376
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
1377
1377
  The value should not contain leading or trailing forward slashes.
1378
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
1378
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
1379
1379
  *Available only for Vault Enterprise*.
1380
1380
  :param pulumi.Input[str] path: Path to mount the LDAP auth backend under
1381
1381
  :param pulumi.Input[bool] starttls: Control use of TLS when conecting to LDAP
@@ -1624,7 +1624,7 @@ class AuthBackend(pulumi.CustomResource):
1624
1624
  *Available only for Vault 1.11.11+, 1.12.7+, and 1.13.3+*.
1625
1625
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
1626
1626
  The value should not contain leading or trailing forward slashes.
1627
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
1627
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
1628
1628
  *Available only for Vault Enterprise*.
1629
1629
  :param pulumi.Input[str] path: Path to mount the LDAP auth backend under
1630
1630
  :param pulumi.Input[bool] starttls: Control use of TLS when conecting to LDAP
@@ -1842,7 +1842,7 @@ class AuthBackend(pulumi.CustomResource):
1842
1842
  """
1843
1843
  The namespace to provision the resource in.
1844
1844
  The value should not contain leading or trailing forward slashes.
1845
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
1845
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
1846
1846
  *Available only for Vault Enterprise*.
1847
1847
  """
1848
1848
  return pulumi.get(self, "namespace")
@@ -26,7 +26,7 @@ class AuthBackendGroupArgs:
26
26
  For more details on the usage of each argument consult the [Vault LDAP API documentation](https://www.vaultproject.io/api-docs/auth/ldap).
27
27
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
28
28
  The value should not contain leading or trailing forward slashes.
29
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
29
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
30
30
  *Available only for Vault Enterprise*.
31
31
  :param pulumi.Input[Sequence[pulumi.Input[str]]] policies: Policies which should be granted to members of the group
32
32
  """
@@ -70,7 +70,7 @@ class AuthBackendGroupArgs:
70
70
  """
71
71
  The namespace to provision the resource in.
72
72
  The value should not contain leading or trailing forward slashes.
73
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
73
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
74
74
  *Available only for Vault Enterprise*.
75
75
  """
76
76
  return pulumi.get(self, "namespace")
@@ -107,7 +107,7 @@ class _AuthBackendGroupState:
107
107
  :param pulumi.Input[str] groupname: The LDAP groupname
108
108
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
109
109
  The value should not contain leading or trailing forward slashes.
110
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
110
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
111
111
  *Available only for Vault Enterprise*.
112
112
  :param pulumi.Input[Sequence[pulumi.Input[str]]] policies: Policies which should be granted to members of the group
113
113
  """
@@ -152,7 +152,7 @@ class _AuthBackendGroupState:
152
152
  """
153
153
  The namespace to provision the resource in.
154
154
  The value should not contain leading or trailing forward slashes.
155
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
155
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
156
156
  *Available only for Vault Enterprise*.
157
157
  """
158
158
  return pulumi.get(self, "namespace")
@@ -226,7 +226,7 @@ class AuthBackendGroup(pulumi.CustomResource):
226
226
  :param pulumi.Input[str] groupname: The LDAP groupname
227
227
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
228
228
  The value should not contain leading or trailing forward slashes.
229
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
229
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
230
230
  *Available only for Vault Enterprise*.
231
231
  :param pulumi.Input[Sequence[pulumi.Input[str]]] policies: Policies which should be granted to members of the group
232
232
  """
@@ -331,7 +331,7 @@ class AuthBackendGroup(pulumi.CustomResource):
331
331
  :param pulumi.Input[str] groupname: The LDAP groupname
332
332
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
333
333
  The value should not contain leading or trailing forward slashes.
334
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
334
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
335
335
  *Available only for Vault Enterprise*.
336
336
  :param pulumi.Input[Sequence[pulumi.Input[str]]] policies: Policies which should be granted to members of the group
337
337
  """
@@ -369,7 +369,7 @@ class AuthBackendGroup(pulumi.CustomResource):
369
369
  """
370
370
  The namespace to provision the resource in.
371
371
  The value should not contain leading or trailing forward slashes.
372
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
372
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
373
373
  *Available only for Vault Enterprise*.
374
374
  """
375
375
  return pulumi.get(self, "namespace")
@@ -28,7 +28,7 @@ class AuthBackendUserArgs:
28
28
  :param pulumi.Input[Sequence[pulumi.Input[str]]] groups: Override LDAP groups which should be granted to user
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: Policies which should be granted to user
34
34
  """
@@ -86,7 +86,7 @@ class AuthBackendUserArgs:
86
86
  """
87
87
  The namespace to provision the resource in.
88
88
  The value should not contain leading or trailing forward slashes.
89
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
89
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
90
90
  *Available only for Vault Enterprise*.
91
91
  """
92
92
  return pulumi.get(self, "namespace")
@@ -124,7 +124,7 @@ class _AuthBackendUserState:
124
124
  :param pulumi.Input[Sequence[pulumi.Input[str]]] groups: Override LDAP groups which should be granted to user
125
125
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
126
126
  The value should not contain leading or trailing forward slashes.
127
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
127
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
128
128
  *Available only for Vault Enterprise*.
129
129
  :param pulumi.Input[Sequence[pulumi.Input[str]]] policies: Policies which should be granted to user
130
130
  :param pulumi.Input[str] username: The LDAP username
@@ -172,7 +172,7 @@ class _AuthBackendUserState:
172
172
  """
173
173
  The namespace to provision the resource in.
174
174
  The value should not contain leading or trailing forward slashes.
175
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
175
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
176
176
  *Available only for Vault Enterprise*.
177
177
  """
178
178
  return pulumi.get(self, "namespace")
@@ -262,7 +262,7 @@ class AuthBackendUser(pulumi.CustomResource):
262
262
  :param pulumi.Input[Sequence[pulumi.Input[str]]] groups: Override LDAP groups which should be granted to user
263
263
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
264
264
  The value should not contain leading or trailing forward slashes.
265
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
265
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
266
266
  *Available only for Vault Enterprise*.
267
267
  :param pulumi.Input[Sequence[pulumi.Input[str]]] policies: Policies which should be granted to user
268
268
  :param pulumi.Input[str] username: The LDAP username
@@ -374,7 +374,7 @@ class AuthBackendUser(pulumi.CustomResource):
374
374
  :param pulumi.Input[Sequence[pulumi.Input[str]]] groups: Override LDAP groups which should be granted to user
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: Policies which should be granted to user
380
380
  :param pulumi.Input[str] username: The LDAP username
@@ -414,7 +414,7 @@ class AuthBackendUser(pulumi.CustomResource):
414
414
  """
415
415
  The namespace to provision the resource in.
416
416
  The value should not contain leading or trailing forward slashes.
417
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
417
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
418
418
  *Available only for Vault Enterprise*.
419
419
  """
420
420
  return pulumi.get(self, "namespace")