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
pulumi_vault/mount.py CHANGED
@@ -41,7 +41,7 @@ class MountArgs:
41
41
  :param pulumi.Input[int] max_lease_ttl_seconds: Maximum possible lease duration for tokens and secrets in seconds
42
42
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
43
43
  The value should not contain leading or trailing forward slashes.
44
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
44
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
45
45
  *Available only for Vault Enterprise*.
46
46
  :param pulumi.Input[Mapping[str, Any]] options: Specifies mount type specific options that are passed to the backend
47
47
  :param pulumi.Input[bool] seal_wrap: Boolean flag that can be explicitly set to true to enable seal wrapping for the mount, causing values stored by the mount to be wrapped by the seal's encryption capability
@@ -197,7 +197,7 @@ class MountArgs:
197
197
  """
198
198
  The namespace to provision the resource in.
199
199
  The value should not contain leading or trailing forward slashes.
200
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
200
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
201
201
  *Available only for Vault Enterprise*.
202
202
  """
203
203
  return pulumi.get(self, "namespace")
@@ -261,7 +261,7 @@ class _MountState:
261
261
  :param pulumi.Input[int] max_lease_ttl_seconds: Maximum possible lease duration for tokens and secrets in seconds
262
262
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
263
263
  The value should not contain leading or trailing forward slashes.
264
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
264
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
265
265
  *Available only for Vault Enterprise*.
266
266
  :param pulumi.Input[Mapping[str, Any]] options: Specifies mount type specific options that are passed to the backend
267
267
  :param pulumi.Input[str] path: Where the secret backend will be mounted
@@ -411,7 +411,7 @@ class _MountState:
411
411
  """
412
412
  The namespace to provision the resource in.
413
413
  The value should not contain leading or trailing forward slashes.
414
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
414
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
415
415
  *Available only for Vault Enterprise*.
416
416
  """
417
417
  return pulumi.get(self, "namespace")
@@ -489,6 +489,8 @@ class Mount(pulumi.CustomResource):
489
489
  type: Optional[pulumi.Input[str]] = None,
490
490
  __props__=None):
491
491
  """
492
+ This resource enables a new secrets engine at the given path.
493
+
492
494
  ## Example Usage
493
495
 
494
496
  <!--Start PulumiCodeChooser -->
@@ -568,7 +570,7 @@ class Mount(pulumi.CustomResource):
568
570
  :param pulumi.Input[int] max_lease_ttl_seconds: Maximum possible lease duration for tokens and secrets in seconds
569
571
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
570
572
  The value should not contain leading or trailing forward slashes.
571
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
573
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
572
574
  *Available only for Vault Enterprise*.
573
575
  :param pulumi.Input[Mapping[str, Any]] options: Specifies mount type specific options that are passed to the backend
574
576
  :param pulumi.Input[str] path: Where the secret backend will be mounted
@@ -582,6 +584,8 @@ class Mount(pulumi.CustomResource):
582
584
  args: MountArgs,
583
585
  opts: Optional[pulumi.ResourceOptions] = None):
584
586
  """
587
+ This resource enables a new secrets engine at the given path.
588
+
585
589
  ## Example Usage
586
590
 
587
591
  <!--Start PulumiCodeChooser -->
@@ -746,7 +750,7 @@ class Mount(pulumi.CustomResource):
746
750
  :param pulumi.Input[int] max_lease_ttl_seconds: Maximum possible lease duration for tokens and secrets in seconds
747
751
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
748
752
  The value should not contain leading or trailing forward slashes.
749
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
753
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
750
754
  *Available only for Vault Enterprise*.
751
755
  :param pulumi.Input[Mapping[str, Any]] options: Specifies mount type specific options that are passed to the backend
752
756
  :param pulumi.Input[str] path: Where the secret backend will be mounted
@@ -851,7 +855,7 @@ class Mount(pulumi.CustomResource):
851
855
  """
852
856
  The namespace to provision the resource in.
853
857
  The value should not contain leading or trailing forward slashes.
854
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
858
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
855
859
  *Available only for Vault Enterprise*.
856
860
  """
857
861
  return pulumi.get(self, "namespace")
pulumi_vault/namespace.py CHANGED
@@ -25,7 +25,7 @@ class NamespaceArgs:
25
25
  is `map[string]string`. Requires Vault version 1.12+.
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[str] path_fq: The fully qualified path to the namespace. Useful when provisioning resources in a child `namespace`.
31
31
  The path is relative to the provider's `namespace` argument.
@@ -69,7 +69,7 @@ class NamespaceArgs:
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")
@@ -106,7 +106,7 @@ class _NamespaceState:
106
106
  is `map[string]string`. Requires Vault version 1.12+.
107
107
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
108
108
  The value should not contain leading or trailing forward slashes.
109
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
109
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
110
110
  *Available only for Vault Enterprise*.
111
111
  :param pulumi.Input[str] namespace_id: Vault server's internal ID of the namespace.
112
112
  :param pulumi.Input[str] path: The path of the namespace. Must not have a trailing `/`.
@@ -143,7 +143,7 @@ class _NamespaceState:
143
143
  """
144
144
  The namespace to provision the resource in.
145
145
  The value should not contain leading or trailing forward slashes.
146
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
146
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
147
147
  *Available only for Vault Enterprise*.
148
148
  """
149
149
  return pulumi.get(self, "namespace")
@@ -257,7 +257,7 @@ class Namespace(pulumi.CustomResource):
257
257
  is `map[string]string`. Requires Vault version 1.12+.
258
258
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
259
259
  The value should not contain leading or trailing forward slashes.
260
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
260
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
261
261
  *Available only for Vault Enterprise*.
262
262
  :param pulumi.Input[str] path: The path of the namespace. Must not have a trailing `/`.
263
263
  :param pulumi.Input[str] path_fq: The fully qualified path to the namespace. Useful when provisioning resources in a child `namespace`.
@@ -381,7 +381,7 @@ class Namespace(pulumi.CustomResource):
381
381
  is `map[string]string`. Requires Vault version 1.12+.
382
382
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
383
383
  The value should not contain leading or trailing forward slashes.
384
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
384
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
385
385
  *Available only for Vault Enterprise*.
386
386
  :param pulumi.Input[str] namespace_id: Vault server's internal ID of the namespace.
387
387
  :param pulumi.Input[str] path: The path of the namespace. Must not have a trailing `/`.
@@ -414,7 +414,7 @@ class Namespace(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")
@@ -52,7 +52,7 @@ class NomadSecretBackendArgs:
52
52
  :param pulumi.Input[int] max_ttl: Maximum possible lease duration for secrets in seconds.
53
53
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
54
54
  The value should not contain leading or trailing forward slashes.
55
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
55
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
56
56
  *Available only for Vault Enterprise*.
57
57
  :param pulumi.Input[str] token: Specifies the Nomad Management token to use.
58
58
  :param pulumi.Input[int] ttl: Specifies the ttl of the lease for the generated token.
@@ -245,7 +245,7 @@ class NomadSecretBackendArgs:
245
245
  """
246
246
  The namespace to provision the resource in.
247
247
  The value should not contain leading or trailing forward slashes.
248
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
248
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
249
249
  *Available only for Vault Enterprise*.
250
250
  """
251
251
  return pulumi.get(self, "namespace")
@@ -320,7 +320,7 @@ class _NomadSecretBackendState:
320
320
  :param pulumi.Input[int] max_ttl: Maximum possible lease duration for secrets in seconds.
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] token: Specifies the Nomad Management token to use.
326
326
  :param pulumi.Input[int] ttl: Specifies the ttl of the lease for the generated token.
@@ -513,7 +513,7 @@ class _NomadSecretBackendState:
513
513
  """
514
514
  The namespace to provision the resource in.
515
515
  The value should not contain leading or trailing forward slashes.
516
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
516
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
517
517
  *Available only for Vault Enterprise*.
518
518
  """
519
519
  return pulumi.get(self, "namespace")
@@ -619,7 +619,7 @@ class NomadSecretBackend(pulumi.CustomResource):
619
619
  :param pulumi.Input[int] max_ttl: Maximum possible lease duration for secrets in seconds.
620
620
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
621
621
  The value should not contain leading or trailing forward slashes.
622
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
622
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
623
623
  *Available only for Vault Enterprise*.
624
624
  :param pulumi.Input[str] token: Specifies the Nomad Management token to use.
625
625
  :param pulumi.Input[int] ttl: Specifies the ttl of the lease for the generated token.
@@ -767,7 +767,7 @@ class NomadSecretBackend(pulumi.CustomResource):
767
767
  :param pulumi.Input[int] max_ttl: Maximum possible lease duration for secrets in seconds.
768
768
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
769
769
  The value should not contain leading or trailing forward slashes.
770
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
770
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
771
771
  *Available only for Vault Enterprise*.
772
772
  :param pulumi.Input[str] token: Specifies the Nomad Management token to use.
773
773
  :param pulumi.Input[int] ttl: Specifies the ttl of the lease for the generated token.
@@ -902,7 +902,7 @@ class NomadSecretBackend(pulumi.CustomResource):
902
902
  """
903
903
  The namespace to provision the resource in.
904
904
  The value should not contain leading or trailing forward slashes.
905
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
905
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
906
906
  *Available only for Vault Enterprise*.
907
907
  """
908
908
  return pulumi.get(self, "namespace")
@@ -29,7 +29,7 @@ class NomadSecretRoleArgs:
29
29
  false.
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]]] policies: List of policies attached to the generated token. This setting is only used
35
35
  when `type` is 'client'.
@@ -91,7 +91,7 @@ class NomadSecretRoleArgs:
91
91
  """
92
92
  The namespace to provision the resource in.
93
93
  The value should not contain leading or trailing forward slashes.
94
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
94
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
95
95
  *Available only for Vault Enterprise*.
96
96
  """
97
97
  return pulumi.get(self, "namespace")
@@ -143,7 +143,7 @@ class _NomadSecretRoleState:
143
143
  false.
144
144
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
145
145
  The value should not contain leading or trailing forward slashes.
146
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
146
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
147
147
  *Available only for Vault Enterprise*.
148
148
  :param pulumi.Input[Sequence[pulumi.Input[str]]] policies: List of policies attached to the generated token. This setting is only used
149
149
  when `type` is 'client'.
@@ -196,7 +196,7 @@ class _NomadSecretRoleState:
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")
@@ -295,7 +295,7 @@ class NomadSecretRole(pulumi.CustomResource):
295
295
  false.
296
296
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
297
297
  The value should not contain leading or trailing forward slashes.
298
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
298
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
299
299
  *Available only for Vault Enterprise*.
300
300
  :param pulumi.Input[Sequence[pulumi.Input[str]]] policies: List of policies attached to the generated token. This setting is only used
301
301
  when `type` is 'client'.
@@ -409,7 +409,7 @@ class NomadSecretRole(pulumi.CustomResource):
409
409
  false.
410
410
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
411
411
  The value should not contain leading or trailing forward slashes.
412
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
412
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
413
413
  *Available only for Vault Enterprise*.
414
414
  :param pulumi.Input[Sequence[pulumi.Input[str]]] policies: List of policies attached to the generated token. This setting is only used
415
415
  when `type` is 'client'.
@@ -453,7 +453,7 @@ class NomadSecretRole(pulumi.CustomResource):
453
453
  """
454
454
  The namespace to provision the resource in.
455
455
  The value should not contain leading or trailing forward slashes.
456
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
456
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
457
457
  *Available only for Vault Enterprise*.
458
458
  """
459
459
  return pulumi.get(self, "namespace")
@@ -42,7 +42,7 @@ class AuthBackendArgs:
42
42
  [See the documentation for info on valid duration formats](https://golang.org/pkg/time/#ParseDuration).
43
43
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
44
44
  The value should not contain leading or trailing forward slashes.
45
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
45
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
46
46
  *Available only for Vault Enterprise*.
47
47
  :param pulumi.Input[str] path: Path to mount the Okta auth backend. Default to path `okta`.
48
48
  :param pulumi.Input[str] token: The Okta API token. This is required to query Okta for user group membership.
@@ -169,7 +169,7 @@ class AuthBackendArgs:
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")
@@ -260,7 +260,7 @@ class _AuthBackendState:
260
260
  [See the documentation for info on valid duration formats](https://golang.org/pkg/time/#ParseDuration).
261
261
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
262
262
  The value should not contain leading or trailing forward slashes.
263
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
263
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
264
264
  *Available only for Vault Enterprise*.
265
265
  :param pulumi.Input[str] organization: The Okta organization. This will be the first part of the url `https://XXX.okta.com`
266
266
  :param pulumi.Input[str] path: Path to mount the Okta auth backend. Default to path `okta`.
@@ -391,7 +391,7 @@ class _AuthBackendState:
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")
@@ -532,7 +532,7 @@ class AuthBackend(pulumi.CustomResource):
532
532
  [See the documentation for info on valid duration formats](https://golang.org/pkg/time/#ParseDuration).
533
533
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
534
534
  The value should not contain leading or trailing forward slashes.
535
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
535
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
536
536
  *Available only for Vault Enterprise*.
537
537
  :param pulumi.Input[str] organization: The Okta organization. This will be the first part of the url `https://XXX.okta.com`
538
538
  :param pulumi.Input[str] path: Path to mount the Okta auth backend. Default to path `okta`.
@@ -681,7 +681,7 @@ class AuthBackend(pulumi.CustomResource):
681
681
  [See the documentation for info on valid duration formats](https://golang.org/pkg/time/#ParseDuration).
682
682
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
683
683
  The value should not contain leading or trailing forward slashes.
684
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
684
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
685
685
  *Available only for Vault Enterprise*.
686
686
  :param pulumi.Input[str] organization: The Okta organization. This will be the first part of the url `https://XXX.okta.com`
687
687
  :param pulumi.Input[str] path: Path to mount the Okta auth backend. Default to path `okta`.
@@ -776,7 +776,7 @@ class AuthBackend(pulumi.CustomResource):
776
776
  """
777
777
  The namespace to provision the resource in.
778
778
  The value should not contain leading or trailing forward slashes.
779
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
779
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
780
780
  *Available only for Vault Enterprise*.
781
781
  """
782
782
  return pulumi.get(self, "namespace")
@@ -24,7 +24,7 @@ class AuthBackendGroupInitArgs:
24
24
  :param pulumi.Input[str] path: The path where the Okta auth backend is mounted
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[Sequence[pulumi.Input[str]]] policies: Vault policies to associate with this group
30
30
  """
@@ -65,7 +65,7 @@ class AuthBackendGroupInitArgs:
65
65
  """
66
66
  The namespace to provision the resource in.
67
67
  The value should not contain leading or trailing forward slashes.
68
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
68
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
69
69
  *Available only for Vault Enterprise*.
70
70
  """
71
71
  return pulumi.get(self, "namespace")
@@ -99,7 +99,7 @@ class _AuthBackendGroupState:
99
99
  :param pulumi.Input[str] group_name: Name of the group within the Okta
100
100
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
101
101
  The value should not contain leading or trailing forward slashes.
102
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
102
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
103
103
  *Available only for Vault Enterprise*.
104
104
  :param pulumi.Input[str] path: The path where the Okta auth backend is mounted
105
105
  :param pulumi.Input[Sequence[pulumi.Input[str]]] policies: Vault policies to associate with this group
@@ -131,7 +131,7 @@ class _AuthBackendGroupState:
131
131
  """
132
132
  The namespace to provision the resource in.
133
133
  The value should not contain leading or trailing forward slashes.
134
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
134
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
135
135
  *Available only for Vault Enterprise*.
136
136
  """
137
137
  return pulumi.get(self, "namespace")
@@ -212,7 +212,7 @@ class AuthBackendGroup(pulumi.CustomResource):
212
212
  :param pulumi.Input[str] group_name: Name of the group within the Okta
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 path where the Okta auth backend is mounted
218
218
  :param pulumi.Input[Sequence[pulumi.Input[str]]] policies: Vault policies to associate with this group
@@ -315,7 +315,7 @@ class AuthBackendGroup(pulumi.CustomResource):
315
315
  :param pulumi.Input[str] group_name: Name of the group within the Okta
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
  :param pulumi.Input[str] path: The path where the Okta auth backend is mounted
321
321
  :param pulumi.Input[Sequence[pulumi.Input[str]]] policies: Vault policies to associate with this group
@@ -344,7 +344,7 @@ class AuthBackendGroup(pulumi.CustomResource):
344
344
  """
345
345
  The namespace to provision the resource in.
346
346
  The value should not contain leading or trailing forward slashes.
347
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
347
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
348
348
  *Available only for Vault Enterprise*.
349
349
  """
350
350
  return pulumi.get(self, "namespace")
@@ -26,7 +26,7 @@ class AuthBackendUserInitArgs:
26
26
  :param pulumi.Input[Sequence[pulumi.Input[str]]] groups: List of Okta groups to associate with this user
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: List of Vault policies to associate with this user
32
32
  """
@@ -81,7 +81,7 @@ class AuthBackendUserInitArgs:
81
81
  """
82
82
  The namespace to provision the resource in.
83
83
  The value should not contain leading or trailing forward slashes.
84
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
84
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
85
85
  *Available only for Vault Enterprise*.
86
86
  """
87
87
  return pulumi.get(self, "namespace")
@@ -116,7 +116,7 @@ class _AuthBackendUserState:
116
116
  :param pulumi.Input[Sequence[pulumi.Input[str]]] groups: List of Okta groups to associate with this user
117
117
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
118
118
  The value should not contain leading or trailing forward slashes.
119
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
119
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
120
120
  *Available only for Vault Enterprise*.
121
121
  :param pulumi.Input[str] path: The path where the Okta auth backend is mounted
122
122
  :param pulumi.Input[Sequence[pulumi.Input[str]]] policies: List of Vault policies to associate with this user
@@ -151,7 +151,7 @@ class _AuthBackendUserState:
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")
@@ -245,7 +245,7 @@ class AuthBackendUser(pulumi.CustomResource):
245
245
  :param pulumi.Input[Sequence[pulumi.Input[str]]] groups: List of Okta groups to associate with this user
246
246
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
247
247
  The value should not contain leading or trailing forward slashes.
248
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
248
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
249
249
  *Available only for Vault Enterprise*.
250
250
  :param pulumi.Input[str] path: The path where the Okta auth backend is mounted
251
251
  :param pulumi.Input[Sequence[pulumi.Input[str]]] policies: List of Vault policies to associate with this user
@@ -352,7 +352,7 @@ class AuthBackendUser(pulumi.CustomResource):
352
352
  :param pulumi.Input[Sequence[pulumi.Input[str]]] groups: List of Okta groups to associate with this user
353
353
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
354
354
  The value should not contain leading or trailing forward slashes.
355
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
355
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
356
356
  *Available only for Vault Enterprise*.
357
357
  :param pulumi.Input[str] path: The path where the Okta auth backend is mounted
358
358
  :param pulumi.Input[Sequence[pulumi.Input[str]]] policies: List of Vault policies to associate with this user
@@ -383,7 +383,7 @@ class AuthBackendUser(pulumi.CustomResource):
383
383
  """
384
384
  The namespace to provision the resource in.
385
385
  The value should not contain leading or trailing forward slashes.
386
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
386
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
387
387
  *Available only for Vault Enterprise*.
388
388
  """
389
389
  return pulumi.get(self, "namespace")
@@ -23,7 +23,7 @@ class PasswordPolicyArgs:
23
23
  :param pulumi.Input[str] name: The name of the password policy.
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__, "policy", policy)
@@ -62,7 +62,7 @@ class PasswordPolicyArgs:
62
62
  """
63
63
  The namespace to provision the resource in.
64
64
  The value should not contain leading or trailing forward slashes.
65
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
65
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
66
66
  *Available only for Vault Enterprise*.
67
67
  """
68
68
  return pulumi.get(self, "namespace")
@@ -83,7 +83,7 @@ class _PasswordPolicyState:
83
83
  :param pulumi.Input[str] name: The name of the password policy.
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
  :param pulumi.Input[str] policy: String containing a password policy.
89
89
  """
@@ -112,7 +112,7 @@ class _PasswordPolicyState:
112
112
  """
113
113
  The namespace to provision the resource in.
114
114
  The value should not contain leading or trailing forward slashes.
115
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
115
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
116
116
  *Available only for Vault Enterprise*.
117
117
  """
118
118
  return pulumi.get(self, "namespace")
@@ -177,7 +177,7 @@ class PasswordPolicy(pulumi.CustomResource):
177
177
  :param pulumi.Input[str] name: The name of the password policy.
178
178
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
179
179
  The value should not contain leading or trailing forward slashes.
180
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
180
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
181
181
  *Available only for Vault Enterprise*.
182
182
  :param pulumi.Input[str] policy: String containing a password policy.
183
183
  """
@@ -271,7 +271,7 @@ class PasswordPolicy(pulumi.CustomResource):
271
271
  :param pulumi.Input[str] name: The name of the password policy.
272
272
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
273
273
  The value should not contain leading or trailing forward slashes.
274
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
274
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
275
275
  *Available only for Vault Enterprise*.
276
276
  :param pulumi.Input[str] policy: String containing a password policy.
277
277
  """
@@ -298,7 +298,7 @@ class PasswordPolicy(pulumi.CustomResource):
298
298
  """
299
299
  The namespace to provision the resource in.
300
300
  The value should not contain leading or trailing forward slashes.
301
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
301
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
302
302
  *Available only for Vault Enterprise*.
303
303
  """
304
304
  return pulumi.get(self, "namespace")
@@ -5,6 +5,7 @@
5
5
  from .. import _utilities
6
6
  import typing
7
7
  # Export this package's modules as members:
8
+ from .backend_config_cluster import *
8
9
  from .get_backend_issuer import *
9
10
  from .get_backend_issuers import *
10
11
  from .get_backend_key import *