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 OidcArgs:
24
24
  components.
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
  if issuer is not None:
@@ -53,7 +53,7 @@ class OidcArgs:
53
53
  """
54
54
  The namespace to provision the resource in.
55
55
  The value should not contain leading or trailing forward slashes.
56
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
56
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
57
57
  *Available only for Vault Enterprise*.
58
58
  """
59
59
  return pulumi.get(self, "namespace")
@@ -76,7 +76,7 @@ class _OidcState:
76
76
  components.
77
77
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
78
78
  The value should not contain leading or trailing forward slashes.
79
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
79
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
80
80
  *Available only for Vault Enterprise*.
81
81
  """
82
82
  if issuer is not None:
@@ -105,7 +105,7 @@ class _OidcState:
105
105
  """
106
106
  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
  """
111
111
  return pulumi.get(self, "namespace")
@@ -150,7 +150,7 @@ class Oidc(pulumi.CustomResource):
150
150
  components.
151
151
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
152
152
  The value should not contain leading or trailing forward slashes.
153
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
153
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
154
154
  *Available only for Vault Enterprise*.
155
155
  """
156
156
  ...
@@ -231,7 +231,7 @@ class Oidc(pulumi.CustomResource):
231
231
  components.
232
232
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
233
233
  The value should not contain leading or trailing forward slashes.
234
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
234
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
235
235
  *Available only for Vault Enterprise*.
236
236
  """
237
237
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
@@ -259,7 +259,7 @@ class Oidc(pulumi.CustomResource):
259
259
  """
260
260
  The namespace to provision the resource in.
261
261
  The value should not contain leading or trailing forward slashes.
262
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
262
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
263
263
  *Available only for Vault Enterprise*.
264
264
  """
265
265
  return pulumi.get(self, "namespace")
@@ -25,7 +25,7 @@ class OidcAssignmentArgs:
25
25
  :param pulumi.Input[str] name: The name of the assignment.
26
26
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
27
27
  The value should not contain leading or trailing forward slashes.
28
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
28
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
29
29
  *Available only for Vault Enterprise*.
30
30
  """
31
31
  if entity_ids is not None:
@@ -79,7 +79,7 @@ class OidcAssignmentArgs:
79
79
  """
80
80
  The namespace to provision the resource in.
81
81
  The value should not contain leading or trailing forward slashes.
82
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
82
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
83
83
  *Available only for Vault Enterprise*.
84
84
  """
85
85
  return pulumi.get(self, "namespace")
@@ -103,7 +103,7 @@ class _OidcAssignmentState:
103
103
  :param pulumi.Input[str] name: The name of the assignment.
104
104
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
105
105
  The value should not contain leading or trailing forward slashes.
106
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
106
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
107
107
  *Available only for Vault Enterprise*.
108
108
  """
109
109
  if entity_ids is not None:
@@ -157,7 +157,7 @@ class _OidcAssignmentState:
157
157
  """
158
158
  The namespace to provision the resource in.
159
159
  The value should not contain leading or trailing forward slashes.
160
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
160
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
161
161
  *Available only for Vault Enterprise*.
162
162
  """
163
163
  return pulumi.get(self, "namespace")
@@ -216,7 +216,7 @@ class OidcAssignment(pulumi.CustomResource):
216
216
  :param pulumi.Input[str] name: The name of the assignment.
217
217
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
218
218
  The value should not contain leading or trailing forward slashes.
219
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
219
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
220
220
  *Available only for Vault Enterprise*.
221
221
  """
222
222
  ...
@@ -315,7 +315,7 @@ class OidcAssignment(pulumi.CustomResource):
315
315
  :param pulumi.Input[str] name: The name of the assignment.
316
316
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
317
317
  The value should not contain leading or trailing forward slashes.
318
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
318
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
319
319
  *Available only for Vault Enterprise*.
320
320
  """
321
321
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
@@ -358,7 +358,7 @@ class OidcAssignment(pulumi.CustomResource):
358
358
  """
359
359
  The namespace to provision the resource in.
360
360
  The value should not contain leading or trailing forward slashes.
361
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
361
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
362
362
  *Available only for Vault Enterprise*.
363
363
  """
364
364
  return pulumi.get(self, "namespace")
@@ -36,7 +36,7 @@ class OidcClientArgs:
36
36
  :param pulumi.Input[str] name: The name of the client.
37
37
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
38
38
  The value should not contain leading or trailing forward slashes.
39
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
39
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
40
40
  *Available only for Vault Enterprise*.
41
41
  :param pulumi.Input[Sequence[pulumi.Input[str]]] redirect_uris: Redirection URI values used by the client.
42
42
  One of these values must exactly match the `redirect_uri` parameter value
@@ -141,7 +141,7 @@ class OidcClientArgs:
141
141
  """
142
142
  The namespace to provision the resource in.
143
143
  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).
144
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
145
145
  *Available only for Vault Enterprise*.
146
146
  """
147
147
  return pulumi.get(self, "namespace")
@@ -182,8 +182,9 @@ class _OidcClientState:
182
182
  Input properties used for looking up and filtering OidcClient resources.
183
183
  :param pulumi.Input[int] access_token_ttl: The time-to-live for access tokens obtained by the client.
184
184
  :param pulumi.Input[Sequence[pulumi.Input[str]]] assignments: A list of assignment resources associated with the client.
185
- :param pulumi.Input[str] client_id: The Client ID from Vault.
186
- :param pulumi.Input[str] client_secret: The Client Secret from Vault.
185
+ :param pulumi.Input[str] client_id: The Client ID returned by Vault.
186
+ :param pulumi.Input[str] client_secret: The Client Secret Key returned by Vault.
187
+ For public OpenID Clients `client_secret` is set to an empty string `""`
187
188
  :param pulumi.Input[str] client_type: The client type based on its ability to maintain confidentiality of credentials.
188
189
  The following client types are supported: `confidential`, `public`. Defaults to `confidential`.
189
190
  :param pulumi.Input[int] id_token_ttl: The time-to-live for ID tokens obtained by the client.
@@ -194,7 +195,7 @@ class _OidcClientState:
194
195
  :param pulumi.Input[str] name: The name of the client.
195
196
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
196
197
  The value should not contain leading or trailing forward slashes.
197
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
198
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
198
199
  *Available only for Vault Enterprise*.
199
200
  :param pulumi.Input[Sequence[pulumi.Input[str]]] redirect_uris: Redirection URI values used by the client.
200
201
  One of these values must exactly match the `redirect_uri` parameter value
@@ -249,7 +250,7 @@ class _OidcClientState:
249
250
  @pulumi.getter(name="clientId")
250
251
  def client_id(self) -> Optional[pulumi.Input[str]]:
251
252
  """
252
- The Client ID from Vault.
253
+ The Client ID returned by Vault.
253
254
  """
254
255
  return pulumi.get(self, "client_id")
255
256
 
@@ -261,7 +262,8 @@ class _OidcClientState:
261
262
  @pulumi.getter(name="clientSecret")
262
263
  def client_secret(self) -> Optional[pulumi.Input[str]]:
263
264
  """
264
- The Client Secret from Vault.
265
+ The Client Secret Key returned by Vault.
266
+ For public OpenID Clients `client_secret` is set to an empty string `""`
265
267
  """
266
268
  return pulumi.get(self, "client_secret")
267
269
 
@@ -327,7 +329,7 @@ class _OidcClientState:
327
329
  """
328
330
  The namespace to provision the resource in.
329
331
  The value should not contain leading or trailing forward slashes.
330
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
332
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
331
333
  *Available only for Vault Enterprise*.
332
334
  """
333
335
  return pulumi.get(self, "namespace")
@@ -413,7 +415,7 @@ class OidcClient(pulumi.CustomResource):
413
415
  :param pulumi.Input[str] name: The name of the client.
414
416
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
415
417
  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).
418
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
417
419
  *Available only for Vault Enterprise*.
418
420
  :param pulumi.Input[Sequence[pulumi.Input[str]]] redirect_uris: Redirection URI values used by the client.
419
421
  One of these values must exactly match the `redirect_uri` parameter value
@@ -532,8 +534,9 @@ class OidcClient(pulumi.CustomResource):
532
534
  :param pulumi.ResourceOptions opts: Options for the resource.
533
535
  :param pulumi.Input[int] access_token_ttl: The time-to-live for access tokens obtained by the client.
534
536
  :param pulumi.Input[Sequence[pulumi.Input[str]]] assignments: A list of assignment resources associated with the client.
535
- :param pulumi.Input[str] client_id: The Client ID from Vault.
536
- :param pulumi.Input[str] client_secret: The Client Secret from Vault.
537
+ :param pulumi.Input[str] client_id: The Client ID returned by Vault.
538
+ :param pulumi.Input[str] client_secret: The Client Secret Key returned by Vault.
539
+ For public OpenID Clients `client_secret` is set to an empty string `""`
537
540
  :param pulumi.Input[str] client_type: The client type based on its ability to maintain confidentiality of credentials.
538
541
  The following client types are supported: `confidential`, `public`. Defaults to `confidential`.
539
542
  :param pulumi.Input[int] id_token_ttl: The time-to-live for ID tokens obtained by the client.
@@ -544,7 +547,7 @@ class OidcClient(pulumi.CustomResource):
544
547
  :param pulumi.Input[str] name: The name of the client.
545
548
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
546
549
  The value should not contain leading or trailing forward slashes.
547
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
550
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
548
551
  *Available only for Vault Enterprise*.
549
552
  :param pulumi.Input[Sequence[pulumi.Input[str]]] redirect_uris: Redirection URI values used by the client.
550
553
  One of these values must exactly match the `redirect_uri` parameter value
@@ -586,7 +589,7 @@ class OidcClient(pulumi.CustomResource):
586
589
  @pulumi.getter(name="clientId")
587
590
  def client_id(self) -> pulumi.Output[str]:
588
591
  """
589
- The Client ID from Vault.
592
+ The Client ID returned by Vault.
590
593
  """
591
594
  return pulumi.get(self, "client_id")
592
595
 
@@ -594,7 +597,8 @@ class OidcClient(pulumi.CustomResource):
594
597
  @pulumi.getter(name="clientSecret")
595
598
  def client_secret(self) -> pulumi.Output[str]:
596
599
  """
597
- The Client Secret from Vault.
600
+ The Client Secret Key returned by Vault.
601
+ For public OpenID Clients `client_secret` is set to an empty string `""`
598
602
  """
599
603
  return pulumi.get(self, "client_secret")
600
604
 
@@ -640,7 +644,7 @@ class OidcClient(pulumi.CustomResource):
640
644
  """
641
645
  The namespace to provision the resource in.
642
646
  The value should not contain leading or trailing forward slashes.
643
- 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).
644
648
  *Available only for Vault Enterprise*.
645
649
  """
646
650
  return pulumi.get(self, "namespace")
@@ -29,7 +29,7 @@ class OidcKeyArgs:
29
29
  :param pulumi.Input[str] name: Name of the OIDC Key to create.
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
  :param pulumi.Input[int] rotation_period: How often to generate a new signing key in number of seconds
35
35
  :param pulumi.Input[int] verification_ttl: "Controls how long the public portion of a signing key will be
@@ -92,7 +92,7 @@ class OidcKeyArgs:
92
92
  """
93
93
  The namespace to provision the resource in.
94
94
  The value should not contain leading or trailing forward slashes.
95
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
95
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
96
96
  *Available only for Vault Enterprise*.
97
97
  """
98
98
  return pulumi.get(self, "namespace")
@@ -145,7 +145,7 @@ class _OidcKeyState:
145
145
  :param pulumi.Input[str] name: Name of the OIDC Key to create.
146
146
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
147
147
  The value should not contain leading or trailing forward slashes.
148
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
148
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
149
149
  *Available only for Vault Enterprise*.
150
150
  :param pulumi.Input[int] rotation_period: How often to generate a new signing key in number of seconds
151
151
  :param pulumi.Input[int] verification_ttl: "Controls how long the public portion of a signing key will be
@@ -208,7 +208,7 @@ class _OidcKeyState:
208
208
  """
209
209
  The namespace to provision the resource in.
210
210
  The value should not contain leading or trailing forward slashes.
211
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
211
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
212
212
  *Available only for Vault Enterprise*.
213
213
  """
214
214
  return pulumi.get(self, "namespace")
@@ -288,7 +288,7 @@ class OidcKey(pulumi.CustomResource):
288
288
  :param pulumi.Input[str] name: Name of the OIDC Key to create.
289
289
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
290
290
  The value should not contain leading or trailing forward slashes.
291
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
291
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
292
292
  *Available only for Vault Enterprise*.
293
293
  :param pulumi.Input[int] rotation_period: How often to generate a new signing key in number of seconds
294
294
  :param pulumi.Input[int] verification_ttl: "Controls how long the public portion of a signing key will be
@@ -390,7 +390,7 @@ class OidcKey(pulumi.CustomResource):
390
390
  :param pulumi.Input[str] name: Name of the OIDC Key to create.
391
391
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
392
392
  The value should not contain leading or trailing forward slashes.
393
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
393
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
394
394
  *Available only for Vault Enterprise*.
395
395
  :param pulumi.Input[int] rotation_period: How often to generate a new signing key in number of seconds
396
396
  :param pulumi.Input[int] verification_ttl: "Controls how long the public portion of a signing key will be
@@ -440,7 +440,7 @@ class OidcKey(pulumi.CustomResource):
440
440
  """
441
441
  The namespace to provision the resource in.
442
442
  The value should not contain leading or trailing forward slashes.
443
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
443
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
444
444
  *Available only for Vault Enterprise*.
445
445
  """
446
446
  return pulumi.get(self, "namespace")
@@ -23,7 +23,7 @@ class OidcKeyAllowedClientIDArgs:
23
23
  :param pulumi.Input[str] key_name: Name of the OIDC Key allow the Client ID.
24
24
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
25
25
  The value should not contain leading or trailing forward slashes.
26
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
26
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
27
27
  *Available only for Vault Enterprise*.
28
28
  """
29
29
  pulumi.set(__self__, "allowed_client_id", allowed_client_id)
@@ -61,7 +61,7 @@ class OidcKeyAllowedClientIDArgs:
61
61
  """
62
62
  The namespace to provision the resource in.
63
63
  The value should not contain leading or trailing forward slashes.
64
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
64
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
65
65
  *Available only for Vault Enterprise*.
66
66
  """
67
67
  return pulumi.get(self, "namespace")
@@ -83,7 +83,7 @@ class _OidcKeyAllowedClientIDState:
83
83
  :param pulumi.Input[str] key_name: Name of the OIDC Key allow the Client ID.
84
84
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
85
85
  The value should not contain leading or trailing forward slashes.
86
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
86
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
87
87
  *Available only for Vault Enterprise*.
88
88
  """
89
89
  if allowed_client_id is not None:
@@ -123,7 +123,7 @@ class _OidcKeyAllowedClientIDState:
123
123
  """
124
124
  The namespace to provision the resource in.
125
125
  The value should not contain leading or trailing forward slashes.
126
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
126
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
127
127
  *Available only for Vault Enterprise*.
128
128
  """
129
129
  return pulumi.get(self, "namespace")
@@ -164,7 +164,7 @@ class OidcKeyAllowedClientID(pulumi.CustomResource):
164
164
  :param pulumi.Input[str] key_name: Name of the OIDC Key allow the Client ID.
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
  """
170
170
  ...
@@ -247,7 +247,7 @@ class OidcKeyAllowedClientID(pulumi.CustomResource):
247
247
  :param pulumi.Input[str] key_name: Name of the OIDC Key allow the Client ID.
248
248
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
249
249
  The value should not contain leading or trailing forward slashes.
250
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
250
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
251
251
  *Available only for Vault Enterprise*.
252
252
  """
253
253
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
@@ -281,7 +281,7 @@ class OidcKeyAllowedClientID(pulumi.CustomResource):
281
281
  """
282
282
  The namespace to provision the resource in.
283
283
  The value should not contain leading or trailing forward slashes.
284
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
284
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
285
285
  *Available only for Vault Enterprise*.
286
286
  """
287
287
  return pulumi.get(self, "namespace")
@@ -29,7 +29,7 @@ class OidcProviderArgs:
29
29
  :param pulumi.Input[str] name: The name of the provider.
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
  :param pulumi.Input[Sequence[pulumi.Input[str]]] scopes_supporteds: The scopes available for requesting on the provider.
35
35
  """
@@ -101,7 +101,7 @@ class OidcProviderArgs:
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")
@@ -145,7 +145,7 @@ class _OidcProviderState:
145
145
  :param pulumi.Input[str] name: The name of the provider.
146
146
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
147
147
  The value should not contain leading or trailing forward slashes.
148
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
148
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
149
149
  *Available only for Vault Enterprise*.
150
150
  :param pulumi.Input[Sequence[pulumi.Input[str]]] scopes_supporteds: The scopes available for requesting on the provider.
151
151
  """
@@ -233,7 +233,7 @@ class _OidcProviderState:
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")
@@ -326,7 +326,7 @@ class OidcProvider(pulumi.CustomResource):
326
326
  :param pulumi.Input[str] name: The name of the provider.
327
327
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
328
328
  The value should not contain leading or trailing forward slashes.
329
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
329
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
330
330
  *Available only for Vault Enterprise*.
331
331
  :param pulumi.Input[Sequence[pulumi.Input[str]]] scopes_supporteds: The scopes available for requesting on the provider.
332
332
  """
@@ -457,7 +457,7 @@ class OidcProvider(pulumi.CustomResource):
457
457
  :param pulumi.Input[str] name: The name of the provider.
458
458
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
459
459
  The value should not contain leading or trailing forward slashes.
460
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
460
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
461
461
  *Available only for Vault Enterprise*.
462
462
  :param pulumi.Input[Sequence[pulumi.Input[str]]] scopes_supporteds: The scopes available for requesting on the provider.
463
463
  """
@@ -523,7 +523,7 @@ class OidcProvider(pulumi.CustomResource):
523
523
  """
524
524
  The namespace to provision the resource in.
525
525
  The value should not contain leading or trailing forward slashes.
526
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
526
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
527
527
  *Available only for Vault Enterprise*.
528
528
  """
529
529
  return pulumi.get(self, "namespace")
@@ -29,7 +29,7 @@ class OidcRoleArgs:
29
29
  :param pulumi.Input[str] name: Name of the OIDC Role to create.
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
  :param pulumi.Input[str] template: The template string to use for generating tokens. This may be in
35
35
  string-ified JSON or base64 format. See the
@@ -93,7 +93,7 @@ class OidcRoleArgs:
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")
@@ -148,7 +148,7 @@ class _OidcRoleState:
148
148
  :param pulumi.Input[str] name: Name of the OIDC Role to create.
149
149
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
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
  :param pulumi.Input[str] template: The template string to use for generating tokens. This may be in
154
154
  string-ified JSON or base64 format. See the
@@ -213,7 +213,7 @@ class _OidcRoleState:
213
213
  """
214
214
  The namespace to provision the resource in.
215
215
  The value should not contain leading or trailing forward slashes.
216
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
216
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
217
217
  *Available only for Vault Enterprise*.
218
218
  """
219
219
  return pulumi.get(self, "namespace")
@@ -320,7 +320,7 @@ class OidcRole(pulumi.CustomResource):
320
320
  :param pulumi.Input[str] name: Name of the OIDC Role to create.
321
321
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
322
322
  The value should not contain leading or trailing forward slashes.
323
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
323
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
324
324
  *Available only for Vault Enterprise*.
325
325
  :param pulumi.Input[str] template: The template string to use for generating tokens. This may be in
326
326
  string-ified JSON or base64 format. See the
@@ -451,7 +451,7 @@ class OidcRole(pulumi.CustomResource):
451
451
  :param pulumi.Input[str] name: Name of the OIDC Role to create.
452
452
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
453
453
  The value should not contain leading or trailing forward slashes.
454
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
454
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
455
455
  *Available only for Vault Enterprise*.
456
456
  :param pulumi.Input[str] template: The template string to use for generating tokens. This may be in
457
457
  string-ified JSON or base64 format. See the
@@ -503,7 +503,7 @@ class OidcRole(pulumi.CustomResource):
503
503
  """
504
504
  The namespace to provision the resource in.
505
505
  The value should not contain leading or trailing forward slashes.
506
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
506
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
507
507
  *Available only for Vault Enterprise*.
508
508
  """
509
509
  return pulumi.get(self, "namespace")
@@ -24,7 +24,7 @@ class OidcScopeArgs:
24
24
  :param pulumi.Input[str] name: The name of the scope. The `openid` scope name is reserved.
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] template: The template string for the scope. This may be provided as escaped JSON or base64 encoded JSON.
30
30
  """
@@ -67,7 +67,7 @@ class OidcScopeArgs:
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")
@@ -102,7 +102,7 @@ class _OidcScopeState:
102
102
  :param pulumi.Input[str] name: The name of the scope. The `openid` scope name is reserved.
103
103
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
104
104
  The value should not contain leading or trailing forward slashes.
105
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
105
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
106
106
  *Available only for Vault Enterprise*.
107
107
  :param pulumi.Input[str] template: The template string for the scope. This may be provided as escaped JSON or base64 encoded JSON.
108
108
  """
@@ -145,7 +145,7 @@ class _OidcScopeState:
145
145
  """
146
146
  The namespace to provision the resource in.
147
147
  The value should not contain leading or trailing forward slashes.
148
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
148
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
149
149
  *Available only for Vault Enterprise*.
150
150
  """
151
151
  return pulumi.get(self, "namespace")
@@ -208,7 +208,7 @@ class OidcScope(pulumi.CustomResource):
208
208
  :param pulumi.Input[str] name: The name of the scope. The `openid` scope name is reserved.
209
209
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
210
210
  The value should not contain leading or trailing forward slashes.
211
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
211
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
212
212
  *Available only for Vault Enterprise*.
213
213
  :param pulumi.Input[str] template: The template string for the scope. This may be provided as escaped JSON or base64 encoded JSON.
214
214
  """
@@ -300,7 +300,7 @@ class OidcScope(pulumi.CustomResource):
300
300
  :param pulumi.Input[str] name: The name of the scope. The `openid` scope name is reserved.
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[str] template: The template string for the scope. This may be provided as escaped JSON or base64 encoded JSON.
306
306
  """
@@ -336,7 +336,7 @@ class OidcScope(pulumi.CustomResource):
336
336
  """
337
337
  The namespace to provision the resource in.
338
338
  The value should not contain leading or trailing forward slashes.
339
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
339
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
340
340
  *Available only for Vault Enterprise*.
341
341
  """
342
342
  return pulumi.get(self, "namespace")