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 RoleArgs:
24
24
  :param pulumi.Input[str] name: The name of the role.
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]]] transformations: A comma separated string or slice of transformations to use.
30
30
  """
@@ -66,7 +66,7 @@ class RoleArgs:
66
66
  """
67
67
  The namespace to provision the resource in.
68
68
  The value should not contain leading or trailing forward slashes.
69
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
69
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
70
70
  *Available only for Vault Enterprise*.
71
71
  """
72
72
  return pulumi.get(self, "namespace")
@@ -100,7 +100,7 @@ class _RoleState:
100
100
  :param pulumi.Input[str] name: The name of the role.
101
101
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
102
102
  The value should not contain leading or trailing forward slashes.
103
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
103
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
104
104
  *Available only for Vault Enterprise*.
105
105
  :param pulumi.Input[str] path: Path to where the back-end is mounted within Vault.
106
106
  :param pulumi.Input[Sequence[pulumi.Input[str]]] transformations: A comma separated string or slice of transformations to use.
@@ -132,7 +132,7 @@ class _RoleState:
132
132
  """
133
133
  The namespace to provision the resource in.
134
134
  The value should not contain leading or trailing forward slashes.
135
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
135
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
136
136
  *Available only for Vault Enterprise*.
137
137
  """
138
138
  return pulumi.get(self, "namespace")
@@ -203,7 +203,7 @@ class Role(pulumi.CustomResource):
203
203
  :param pulumi.Input[str] name: The name of the role.
204
204
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
205
205
  The value should not contain leading or trailing forward slashes.
206
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
206
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
207
207
  *Available only for Vault Enterprise*.
208
208
  :param pulumi.Input[str] path: Path to where the back-end is mounted within Vault.
209
209
  :param pulumi.Input[Sequence[pulumi.Input[str]]] transformations: A comma separated string or slice of transformations to use.
@@ -294,7 +294,7 @@ class Role(pulumi.CustomResource):
294
294
  :param pulumi.Input[str] name: The name of the role.
295
295
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
296
296
  The value should not contain leading or trailing forward slashes.
297
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
297
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
298
298
  *Available only for Vault Enterprise*.
299
299
  :param pulumi.Input[str] path: Path to where the back-end is mounted within Vault.
300
300
  :param pulumi.Input[Sequence[pulumi.Input[str]]] transformations: A comma separated string or slice of transformations to use.
@@ -323,7 +323,7 @@ class Role(pulumi.CustomResource):
323
323
  """
324
324
  The namespace to provision the resource in.
325
325
  The value should not contain leading or trailing forward slashes.
326
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
326
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
327
327
  *Available only for Vault Enterprise*.
328
328
  """
329
329
  return pulumi.get(self, "namespace")
@@ -33,7 +33,7 @@ class TemplateArgs:
33
33
  :param pulumi.Input[str] name: The name of the template.
34
34
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
35
35
  The value should not contain leading or trailing forward slashes.
36
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
36
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
37
37
  *Available only for Vault Enterprise*.
38
38
  :param pulumi.Input[str] pattern: The pattern used for matching. Currently, only regular expression pattern is supported.
39
39
  :param pulumi.Input[str] type: The pattern type to use for match detection. Currently, only regex is supported.
@@ -122,7 +122,7 @@ class TemplateArgs:
122
122
  """
123
123
  The namespace to provision the resource in.
124
124
  The value should not contain leading or trailing forward slashes.
125
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
125
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
126
126
  *Available only for Vault Enterprise*.
127
127
  """
128
128
  return pulumi.get(self, "namespace")
@@ -177,7 +177,7 @@ class _TemplateState:
177
177
  :param pulumi.Input[str] name: The name of the template.
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] path: Path to where the back-end is mounted within Vault.
183
183
  :param pulumi.Input[str] pattern: The pattern used for matching. Currently, only regular expression pattern is supported.
@@ -256,7 +256,7 @@ class _TemplateState:
256
256
  """
257
257
  The namespace to provision the resource in.
258
258
  The value should not contain leading or trailing forward slashes.
259
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
259
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
260
260
  *Available only for Vault Enterprise*.
261
261
  """
262
262
  return pulumi.get(self, "namespace")
@@ -367,7 +367,7 @@ class Template(pulumi.CustomResource):
367
367
  :param pulumi.Input[str] name: The name of the template.
368
368
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
369
369
  The value should not contain leading or trailing forward slashes.
370
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
370
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
371
371
  *Available only for Vault Enterprise*.
372
372
  :param pulumi.Input[str] path: Path to where the back-end is mounted within Vault.
373
373
  :param pulumi.Input[str] pattern: The pattern used for matching. Currently, only regular expression pattern is supported.
@@ -495,7 +495,7 @@ class Template(pulumi.CustomResource):
495
495
  :param pulumi.Input[str] name: The name of the template.
496
496
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
497
497
  The value should not contain leading or trailing forward slashes.
498
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
498
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
499
499
  *Available only for Vault Enterprise*.
500
500
  :param pulumi.Input[str] path: Path to where the back-end is mounted within Vault.
501
501
  :param pulumi.Input[str] pattern: The pattern used for matching. Currently, only regular expression pattern is supported.
@@ -555,7 +555,7 @@ class Template(pulumi.CustomResource):
555
555
  """
556
556
  The namespace to provision the resource in.
557
557
  The value should not contain leading or trailing forward slashes.
558
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
558
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
559
559
  *Available only for Vault Enterprise*.
560
560
  """
561
561
  return pulumi.get(self, "namespace")
@@ -35,7 +35,7 @@ class TransformationArgs:
35
35
  :param pulumi.Input[str] name: The name of the transformation.
36
36
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
37
37
  The value should not contain leading or trailing forward slashes.
38
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
38
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
39
39
  *Available only for Vault Enterprise*.
40
40
  :param pulumi.Input[str] template: The name of the template to use.
41
41
  :param pulumi.Input[Sequence[pulumi.Input[str]]] templates: Templates configured for transformation.
@@ -130,7 +130,7 @@ class TransformationArgs:
130
130
  """
131
131
  The namespace to provision the resource in.
132
132
  The value should not contain leading or trailing forward slashes.
133
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
133
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
134
134
  *Available only for Vault Enterprise*.
135
135
  """
136
136
  return pulumi.get(self, "namespace")
@@ -211,7 +211,7 @@ class _TransformationState:
211
211
  :param pulumi.Input[str] name: The name of the transformation.
212
212
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
213
213
  The value should not contain leading or trailing forward slashes.
214
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
214
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
215
215
  *Available only for Vault Enterprise*.
216
216
  :param pulumi.Input[str] path: Path to where the back-end is mounted within Vault.
217
217
  :param pulumi.Input[str] template: The name of the template to use.
@@ -296,7 +296,7 @@ class _TransformationState:
296
296
  """
297
297
  The namespace to provision the resource in.
298
298
  The value should not contain leading or trailing forward slashes.
299
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
299
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
300
300
  *Available only for Vault Enterprise*.
301
301
  """
302
302
  return pulumi.get(self, "namespace")
@@ -394,7 +394,7 @@ class Transformation(pulumi.CustomResource):
394
394
  :param pulumi.Input[str] name: The name of the transformation.
395
395
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
396
396
  The value should not contain leading or trailing forward slashes.
397
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
397
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
398
398
  *Available only for Vault Enterprise*.
399
399
  :param pulumi.Input[str] path: Path to where the back-end is mounted within Vault.
400
400
  :param pulumi.Input[str] template: The name of the template to use.
@@ -491,7 +491,7 @@ class Transformation(pulumi.CustomResource):
491
491
  :param pulumi.Input[str] name: The name of the transformation.
492
492
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
493
493
  The value should not contain leading or trailing forward slashes.
494
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
494
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
495
495
  *Available only for Vault Enterprise*.
496
496
  :param pulumi.Input[str] path: Path to where the back-end is mounted within Vault.
497
497
  :param pulumi.Input[str] template: The name of the template to use.
@@ -555,7 +555,7 @@ class Transformation(pulumi.CustomResource):
555
555
  """
556
556
  The namespace to provision the resource in.
557
557
  The value should not contain leading or trailing forward slashes.
558
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
558
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
559
559
  *Available only for Vault Enterprise*.
560
560
  """
561
561
  return pulumi.get(self, "namespace")
@@ -16,7 +16,6 @@ class SecretBackendKeyArgs:
16
16
  def __init__(__self__, *,
17
17
  backend: pulumi.Input[str],
18
18
  allow_plaintext_backup: Optional[pulumi.Input[bool]] = None,
19
- auto_rotate_interval: Optional[pulumi.Input[int]] = None,
20
19
  auto_rotate_period: Optional[pulumi.Input[int]] = None,
21
20
  convergent_encryption: Optional[pulumi.Input[bool]] = None,
22
21
  deletion_allowed: Optional[pulumi.Input[bool]] = None,
@@ -33,8 +32,6 @@ class SecretBackendKeyArgs:
33
32
  :param pulumi.Input[str] backend: The path the transit secret backend is mounted at, with no leading or trailing `/`s.
34
33
  :param pulumi.Input[bool] allow_plaintext_backup: Enables taking backup of entire keyring in the plaintext format. Once set, this cannot be disabled.
35
34
  * Refer to Vault API documentation on key backups for more information: [Backup Key](https://www.vaultproject.io/api-docs/secret/transit#backup-key)
36
- :param pulumi.Input[int] auto_rotate_interval: Amount of time the key should live before being automatically rotated. A value of 0 disables automatic rotation for the
37
- key.
38
35
  :param pulumi.Input[int] auto_rotate_period: Amount of seconds the key should live before being automatically rotated.
39
36
  A value of 0 disables automatic rotation for the key.
40
37
  :param pulumi.Input[bool] convergent_encryption: Whether or not to support convergent encryption, where the same plaintext creates the same ciphertext. This requires `derived` to be set to `true`.
@@ -47,7 +44,7 @@ class SecretBackendKeyArgs:
47
44
  :param pulumi.Input[str] name: The name to identify this key within the backend. Must be unique within the backend.
48
45
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
49
46
  The value should not contain leading or trailing forward slashes.
50
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
47
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
51
48
  *Available only for Vault Enterprise*.
52
49
  :param pulumi.Input[str] type: Specifies the type of key to create. The currently-supported types are: `aes128-gcm96`, `aes256-gcm96` (default), `chacha20-poly1305`, `ed25519`, `ecdsa-p256`, `ecdsa-p384`, `ecdsa-p521`, `hmac`, `rsa-2048`, `rsa-3072` and `rsa-4096`.
53
50
  * Refer to the Vault documentation on transit key types for more information: [Key Types](https://www.vaultproject.io/docs/secrets/transit#key-types)
@@ -55,11 +52,6 @@ class SecretBackendKeyArgs:
55
52
  pulumi.set(__self__, "backend", backend)
56
53
  if allow_plaintext_backup is not None:
57
54
  pulumi.set(__self__, "allow_plaintext_backup", allow_plaintext_backup)
58
- if auto_rotate_interval is not None:
59
- warnings.warn("""Use auto_rotate_period instead""", DeprecationWarning)
60
- pulumi.log.warn("""auto_rotate_interval is deprecated: Use auto_rotate_period instead""")
61
- if auto_rotate_interval is not None:
62
- pulumi.set(__self__, "auto_rotate_interval", auto_rotate_interval)
63
55
  if auto_rotate_period is not None:
64
56
  pulumi.set(__self__, "auto_rotate_period", auto_rotate_period)
65
57
  if convergent_encryption is not None:
@@ -108,22 +100,6 @@ class SecretBackendKeyArgs:
108
100
  def allow_plaintext_backup(self, value: Optional[pulumi.Input[bool]]):
109
101
  pulumi.set(self, "allow_plaintext_backup", value)
110
102
 
111
- @property
112
- @pulumi.getter(name="autoRotateInterval")
113
- def auto_rotate_interval(self) -> Optional[pulumi.Input[int]]:
114
- """
115
- Amount of time the key should live before being automatically rotated. A value of 0 disables automatic rotation for the
116
- key.
117
- """
118
- warnings.warn("""Use auto_rotate_period instead""", DeprecationWarning)
119
- pulumi.log.warn("""auto_rotate_interval is deprecated: Use auto_rotate_period instead""")
120
-
121
- return pulumi.get(self, "auto_rotate_interval")
122
-
123
- @auto_rotate_interval.setter
124
- def auto_rotate_interval(self, value: Optional[pulumi.Input[int]]):
125
- pulumi.set(self, "auto_rotate_interval", value)
126
-
127
103
  @property
128
104
  @pulumi.getter(name="autoRotatePeriod")
129
105
  def auto_rotate_period(self) -> Optional[pulumi.Input[int]]:
@@ -239,7 +215,7 @@ class SecretBackendKeyArgs:
239
215
  """
240
216
  The namespace to provision the resource in.
241
217
  The value should not contain leading or trailing forward slashes.
242
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
218
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
243
219
  *Available only for Vault Enterprise*.
244
220
  """
245
221
  return pulumi.get(self, "namespace")
@@ -266,7 +242,6 @@ class SecretBackendKeyArgs:
266
242
  class _SecretBackendKeyState:
267
243
  def __init__(__self__, *,
268
244
  allow_plaintext_backup: Optional[pulumi.Input[bool]] = None,
269
- auto_rotate_interval: Optional[pulumi.Input[int]] = None,
270
245
  auto_rotate_period: Optional[pulumi.Input[int]] = None,
271
246
  backend: Optional[pulumi.Input[str]] = None,
272
247
  convergent_encryption: Optional[pulumi.Input[bool]] = None,
@@ -290,8 +265,6 @@ class _SecretBackendKeyState:
290
265
  Input properties used for looking up and filtering SecretBackendKey resources.
291
266
  :param pulumi.Input[bool] allow_plaintext_backup: Enables taking backup of entire keyring in the plaintext format. Once set, this cannot be disabled.
292
267
  * Refer to Vault API documentation on key backups for more information: [Backup Key](https://www.vaultproject.io/api-docs/secret/transit#backup-key)
293
- :param pulumi.Input[int] auto_rotate_interval: Amount of time the key should live before being automatically rotated. A value of 0 disables automatic rotation for the
294
- key.
295
268
  :param pulumi.Input[int] auto_rotate_period: Amount of seconds the key should live before being automatically rotated.
296
269
  A value of 0 disables automatic rotation for the key.
297
270
  :param pulumi.Input[str] backend: The path the transit secret backend is mounted at, with no leading or trailing `/`s.
@@ -310,7 +283,7 @@ class _SecretBackendKeyState:
310
283
  :param pulumi.Input[str] name: The name to identify this key within the backend. Must be unique within the backend.
311
284
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
312
285
  The value should not contain leading or trailing forward slashes.
313
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
286
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
314
287
  *Available only for Vault Enterprise*.
315
288
  :param pulumi.Input[bool] supports_decryption: Whether or not the key supports decryption, based on key type.
316
289
  :param pulumi.Input[bool] supports_derivation: Whether or not the key supports derivation, based on key type.
@@ -321,11 +294,6 @@ class _SecretBackendKeyState:
321
294
  """
322
295
  if allow_plaintext_backup is not None:
323
296
  pulumi.set(__self__, "allow_plaintext_backup", allow_plaintext_backup)
324
- if auto_rotate_interval is not None:
325
- warnings.warn("""Use auto_rotate_period instead""", DeprecationWarning)
326
- pulumi.log.warn("""auto_rotate_interval is deprecated: Use auto_rotate_period instead""")
327
- if auto_rotate_interval is not None:
328
- pulumi.set(__self__, "auto_rotate_interval", auto_rotate_interval)
329
297
  if auto_rotate_period is not None:
330
298
  pulumi.set(__self__, "auto_rotate_period", auto_rotate_period)
331
299
  if backend is not None:
@@ -378,22 +346,6 @@ class _SecretBackendKeyState:
378
346
  def allow_plaintext_backup(self, value: Optional[pulumi.Input[bool]]):
379
347
  pulumi.set(self, "allow_plaintext_backup", value)
380
348
 
381
- @property
382
- @pulumi.getter(name="autoRotateInterval")
383
- def auto_rotate_interval(self) -> Optional[pulumi.Input[int]]:
384
- """
385
- Amount of time the key should live before being automatically rotated. A value of 0 disables automatic rotation for the
386
- key.
387
- """
388
- warnings.warn("""Use auto_rotate_period instead""", DeprecationWarning)
389
- pulumi.log.warn("""auto_rotate_interval is deprecated: Use auto_rotate_period instead""")
390
-
391
- return pulumi.get(self, "auto_rotate_interval")
392
-
393
- @auto_rotate_interval.setter
394
- def auto_rotate_interval(self, value: Optional[pulumi.Input[int]]):
395
- pulumi.set(self, "auto_rotate_interval", value)
396
-
397
349
  @property
398
350
  @pulumi.getter(name="autoRotatePeriod")
399
351
  def auto_rotate_period(self) -> Optional[pulumi.Input[int]]:
@@ -559,7 +511,7 @@ class _SecretBackendKeyState:
559
511
  """
560
512
  The namespace to provision the resource in.
561
513
  The value should not contain leading or trailing forward slashes.
562
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
514
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
563
515
  *Available only for Vault Enterprise*.
564
516
  """
565
517
  return pulumi.get(self, "namespace")
@@ -636,7 +588,6 @@ class SecretBackendKey(pulumi.CustomResource):
636
588
  resource_name: str,
637
589
  opts: Optional[pulumi.ResourceOptions] = None,
638
590
  allow_plaintext_backup: Optional[pulumi.Input[bool]] = None,
639
- auto_rotate_interval: Optional[pulumi.Input[int]] = None,
640
591
  auto_rotate_period: Optional[pulumi.Input[int]] = None,
641
592
  backend: Optional[pulumi.Input[str]] = None,
642
593
  convergent_encryption: Optional[pulumi.Input[bool]] = None,
@@ -670,10 +621,6 @@ class SecretBackendKey(pulumi.CustomResource):
670
621
  ```
671
622
  <!--End PulumiCodeChooser -->
672
623
 
673
- ## Deprecations
674
-
675
- * `auto_rotate_interval` - Replaced by `auto_rotate_period`.
676
-
677
624
  ## Import
678
625
 
679
626
  Transit secret backend keys can be imported using the `path`, e.g.
@@ -686,8 +633,6 @@ class SecretBackendKey(pulumi.CustomResource):
686
633
  :param pulumi.ResourceOptions opts: Options for the resource.
687
634
  :param pulumi.Input[bool] allow_plaintext_backup: Enables taking backup of entire keyring in the plaintext format. Once set, this cannot be disabled.
688
635
  * Refer to Vault API documentation on key backups for more information: [Backup Key](https://www.vaultproject.io/api-docs/secret/transit#backup-key)
689
- :param pulumi.Input[int] auto_rotate_interval: Amount of time the key should live before being automatically rotated. A value of 0 disables automatic rotation for the
690
- key.
691
636
  :param pulumi.Input[int] auto_rotate_period: Amount of seconds the key should live before being automatically rotated.
692
637
  A value of 0 disables automatic rotation for the key.
693
638
  :param pulumi.Input[str] backend: The path the transit secret backend is mounted at, with no leading or trailing `/`s.
@@ -701,7 +646,7 @@ class SecretBackendKey(pulumi.CustomResource):
701
646
  :param pulumi.Input[str] name: The name to identify this key within the backend. Must be unique within the backend.
702
647
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
703
648
  The value should not contain leading or trailing forward slashes.
704
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
649
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
705
650
  *Available only for Vault Enterprise*.
706
651
  :param pulumi.Input[str] type: Specifies the type of key to create. The currently-supported types are: `aes128-gcm96`, `aes256-gcm96` (default), `chacha20-poly1305`, `ed25519`, `ecdsa-p256`, `ecdsa-p384`, `ecdsa-p521`, `hmac`, `rsa-2048`, `rsa-3072` and `rsa-4096`.
707
652
  * Refer to the Vault documentation on transit key types for more information: [Key Types](https://www.vaultproject.io/docs/secrets/transit#key-types)
@@ -732,10 +677,6 @@ class SecretBackendKey(pulumi.CustomResource):
732
677
  ```
733
678
  <!--End PulumiCodeChooser -->
734
679
 
735
- ## Deprecations
736
-
737
- * `auto_rotate_interval` - Replaced by `auto_rotate_period`.
738
-
739
680
  ## Import
740
681
 
741
682
  Transit secret backend keys can be imported using the `path`, e.g.
@@ -760,7 +701,6 @@ class SecretBackendKey(pulumi.CustomResource):
760
701
  resource_name: str,
761
702
  opts: Optional[pulumi.ResourceOptions] = None,
762
703
  allow_plaintext_backup: Optional[pulumi.Input[bool]] = None,
763
- auto_rotate_interval: Optional[pulumi.Input[int]] = None,
764
704
  auto_rotate_period: Optional[pulumi.Input[int]] = None,
765
705
  backend: Optional[pulumi.Input[str]] = None,
766
706
  convergent_encryption: Optional[pulumi.Input[bool]] = None,
@@ -783,7 +723,6 @@ class SecretBackendKey(pulumi.CustomResource):
783
723
  __props__ = SecretBackendKeyArgs.__new__(SecretBackendKeyArgs)
784
724
 
785
725
  __props__.__dict__["allow_plaintext_backup"] = allow_plaintext_backup
786
- __props__.__dict__["auto_rotate_interval"] = auto_rotate_interval
787
726
  __props__.__dict__["auto_rotate_period"] = auto_rotate_period
788
727
  if backend is None and not opts.urn:
789
728
  raise TypeError("Missing required property 'backend'")
@@ -816,7 +755,6 @@ class SecretBackendKey(pulumi.CustomResource):
816
755
  id: pulumi.Input[str],
817
756
  opts: Optional[pulumi.ResourceOptions] = None,
818
757
  allow_plaintext_backup: Optional[pulumi.Input[bool]] = None,
819
- auto_rotate_interval: Optional[pulumi.Input[int]] = None,
820
758
  auto_rotate_period: Optional[pulumi.Input[int]] = None,
821
759
  backend: Optional[pulumi.Input[str]] = None,
822
760
  convergent_encryption: Optional[pulumi.Input[bool]] = None,
@@ -845,8 +783,6 @@ class SecretBackendKey(pulumi.CustomResource):
845
783
  :param pulumi.ResourceOptions opts: Options for the resource.
846
784
  :param pulumi.Input[bool] allow_plaintext_backup: Enables taking backup of entire keyring in the plaintext format. Once set, this cannot be disabled.
847
785
  * Refer to Vault API documentation on key backups for more information: [Backup Key](https://www.vaultproject.io/api-docs/secret/transit#backup-key)
848
- :param pulumi.Input[int] auto_rotate_interval: Amount of time the key should live before being automatically rotated. A value of 0 disables automatic rotation for the
849
- key.
850
786
  :param pulumi.Input[int] auto_rotate_period: Amount of seconds the key should live before being automatically rotated.
851
787
  A value of 0 disables automatic rotation for the key.
852
788
  :param pulumi.Input[str] backend: The path the transit secret backend is mounted at, with no leading or trailing `/`s.
@@ -865,7 +801,7 @@ class SecretBackendKey(pulumi.CustomResource):
865
801
  :param pulumi.Input[str] name: The name to identify this key within the backend. Must be unique within the backend.
866
802
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
867
803
  The value should not contain leading or trailing forward slashes.
868
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
804
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
869
805
  *Available only for Vault Enterprise*.
870
806
  :param pulumi.Input[bool] supports_decryption: Whether or not the key supports decryption, based on key type.
871
807
  :param pulumi.Input[bool] supports_derivation: Whether or not the key supports derivation, based on key type.
@@ -879,7 +815,6 @@ class SecretBackendKey(pulumi.CustomResource):
879
815
  __props__ = _SecretBackendKeyState.__new__(_SecretBackendKeyState)
880
816
 
881
817
  __props__.__dict__["allow_plaintext_backup"] = allow_plaintext_backup
882
- __props__.__dict__["auto_rotate_interval"] = auto_rotate_interval
883
818
  __props__.__dict__["auto_rotate_period"] = auto_rotate_period
884
819
  __props__.__dict__["backend"] = backend
885
820
  __props__.__dict__["convergent_encryption"] = convergent_encryption
@@ -910,18 +845,6 @@ class SecretBackendKey(pulumi.CustomResource):
910
845
  """
911
846
  return pulumi.get(self, "allow_plaintext_backup")
912
847
 
913
- @property
914
- @pulumi.getter(name="autoRotateInterval")
915
- def auto_rotate_interval(self) -> pulumi.Output[int]:
916
- """
917
- Amount of time the key should live before being automatically rotated. A value of 0 disables automatic rotation for the
918
- key.
919
- """
920
- warnings.warn("""Use auto_rotate_period instead""", DeprecationWarning)
921
- pulumi.log.warn("""auto_rotate_interval is deprecated: Use auto_rotate_period instead""")
922
-
923
- return pulumi.get(self, "auto_rotate_interval")
924
-
925
848
  @property
926
849
  @pulumi.getter(name="autoRotatePeriod")
927
850
  def auto_rotate_period(self) -> pulumi.Output[int]:
@@ -1035,7 +958,7 @@ class SecretBackendKey(pulumi.CustomResource):
1035
958
  """
1036
959
  The namespace to provision the resource in.
1037
960
  The value should not contain leading or trailing forward slashes.
1038
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
961
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
1039
962
  *Available only for Vault Enterprise*.
1040
963
  """
1041
964
  return pulumi.get(self, "namespace")
@@ -23,7 +23,7 @@ class SecretCacheConfigArgs:
23
23
  :param pulumi.Input[int] size: The number of cache entries. 0 means unlimited.
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__, "backend", backend)
@@ -61,7 +61,7 @@ class SecretCacheConfigArgs:
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")
@@ -82,7 +82,7 @@ class _SecretCacheConfigState:
82
82
  :param pulumi.Input[str] backend: The path the transit secret backend is mounted at, with no leading or trailing `/`s.
83
83
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
84
84
  The value should not contain leading or trailing forward slashes.
85
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
85
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
86
86
  *Available only for Vault Enterprise*.
87
87
  :param pulumi.Input[int] size: The number of cache entries. 0 means unlimited.
88
88
  """
@@ -111,7 +111,7 @@ class _SecretCacheConfigState:
111
111
  """
112
112
  The namespace to provision the resource in.
113
113
  The value should not contain leading or trailing forward slashes.
114
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
114
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
115
115
  *Available only for Vault Enterprise*.
116
116
  """
117
117
  return pulumi.get(self, "namespace")
@@ -169,7 +169,7 @@ class SecretCacheConfig(pulumi.CustomResource):
169
169
  :param pulumi.Input[str] backend: The path the transit secret backend is mounted at, with no leading or trailing `/`s.
170
170
  :param pulumi.Input[str] namespace: 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
  :param pulumi.Input[int] size: The number of cache entries. 0 means unlimited.
175
175
  """
@@ -258,7 +258,7 @@ class SecretCacheConfig(pulumi.CustomResource):
258
258
  :param pulumi.Input[str] backend: The path the transit secret backend is mounted at, with no leading or trailing `/`s.
259
259
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
260
260
  The value should not contain leading or trailing forward slashes.
261
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
261
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
262
262
  *Available only for Vault Enterprise*.
263
263
  :param pulumi.Input[int] size: The number of cache entries. 0 means unlimited.
264
264
  """
@@ -285,7 +285,7 @@ class SecretCacheConfig(pulumi.CustomResource):
285
285
  """
286
286
  The namespace to provision the resource in.
287
287
  The value should not contain leading or trailing forward slashes.
288
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
288
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
289
289
  *Available only for Vault Enterprise*.
290
290
  """
291
291
  return pulumi.get(self, "namespace")
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pulumi_vault
3
- Version: 5.21.0a1711033014
3
+ Version: 6.0.0
4
4
  Summary: A Pulumi package for creating and managing HashiCorp Vault cloud resources.
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://pulumi.io
@@ -43,7 +43,7 @@ To use from Python, install using `pip`:
43
43
 
44
44
  To use from Go, use `go get` to grab the latest version of the library
45
45
 
46
- $ go get github.com/pulumi/pulumi-vault/sdk/v4
46
+ $ go get github.com/pulumi/pulumi-vault/sdk/v6
47
47
 
48
48
  ### .NET
49
49