pulumi-vault 5.21.0a1710997383__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.0a1710997383.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.0a1710997383.dist-info/RECORD +0 -244
  162. {pulumi_vault-5.21.0a1710997383.dist-info → pulumi_vault-6.0.0.dist-info}/WHEEL +0 -0
  163. {pulumi_vault-5.21.0a1710997383.dist-info → pulumi_vault-6.0.0.dist-info}/top_level.txt +0 -0
pulumi_vault/__init__.py CHANGED
@@ -313,6 +313,14 @@ _utilities.register(
313
313
  "vault:azure/backendRole:BackendRole": "BackendRole"
314
314
  }
315
315
  },
316
+ {
317
+ "pkg": "vault",
318
+ "mod": "config/uiCustomMessage",
319
+ "fqn": "pulumi_vault.config",
320
+ "classes": {
321
+ "vault:config/uiCustomMessage:UiCustomMessage": "UiCustomMessage"
322
+ }
323
+ },
316
324
  {
317
325
  "pkg": "vault",
318
326
  "mod": "consul/secretBackend",
@@ -985,6 +993,14 @@ _utilities.register(
985
993
  "vault:okta/authBackendUser:AuthBackendUser": "AuthBackendUser"
986
994
  }
987
995
  },
996
+ {
997
+ "pkg": "vault",
998
+ "mod": "pkiSecret/backendConfigCluster",
999
+ "fqn": "pulumi_vault.pkisecret",
1000
+ "classes": {
1001
+ "vault:pkiSecret/backendConfigCluster:BackendConfigCluster": "BackendConfigCluster"
1002
+ }
1003
+ },
988
1004
  {
989
1005
  "pkg": "vault",
990
1006
  "mod": "pkiSecret/secretBackendCert",
@@ -1169,6 +1185,14 @@ _utilities.register(
1169
1185
  "vault:secrets/syncGhDestination:SyncGhDestination": "SyncGhDestination"
1170
1186
  }
1171
1187
  },
1188
+ {
1189
+ "pkg": "vault",
1190
+ "mod": "secrets/syncGithubApps",
1191
+ "fqn": "pulumi_vault.secrets",
1192
+ "classes": {
1193
+ "vault:secrets/syncGithubApps:SyncGithubApps": "SyncGithubApps"
1194
+ }
1195
+ },
1172
1196
  {
1173
1197
  "pkg": "vault",
1174
1198
  "mod": "secrets/syncVercelDestination",
@@ -119,7 +119,7 @@ def get_access_credentials(backend: Optional[str] = None,
119
119
  read credentials from, with no leading or trailing `/`s.
120
120
  :param str namespace: The namespace of the target resource.
121
121
  The value should not contain leading or trailing forward slashes.
122
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
122
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
123
123
  *Available only for Vault Enterprise*.
124
124
  :param str role: The name of the AD secret backend role to read
125
125
  credentials from, with no leading or trailing `/`s.
@@ -154,7 +154,7 @@ def get_access_credentials_output(backend: Optional[pulumi.Input[str]] = None,
154
154
  read credentials from, with no leading or trailing `/`s.
155
155
  :param str namespace: The namespace of the target resource.
156
156
  The value should not contain leading or trailing forward slashes.
157
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
157
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
158
158
  *Available only for Vault Enterprise*.
159
159
  :param str role: The name of the AD secret backend role to read
160
160
  credentials from, with no leading or trailing `/`s.
@@ -27,13 +27,11 @@ class SecretBackendArgs:
27
27
  description: Optional[pulumi.Input[str]] = None,
28
28
  disable_remount: Optional[pulumi.Input[bool]] = None,
29
29
  discoverdn: Optional[pulumi.Input[bool]] = None,
30
- formatter: Optional[pulumi.Input[str]] = None,
31
30
  groupattr: Optional[pulumi.Input[str]] = None,
32
31
  groupdn: Optional[pulumi.Input[str]] = None,
33
32
  groupfilter: Optional[pulumi.Input[str]] = None,
34
33
  insecure_tls: Optional[pulumi.Input[bool]] = None,
35
34
  last_rotation_tolerance: Optional[pulumi.Input[int]] = None,
36
- length: Optional[pulumi.Input[int]] = None,
37
35
  local: Optional[pulumi.Input[bool]] = None,
38
36
  max_lease_ttl_seconds: Optional[pulumi.Input[int]] = None,
39
37
  max_ttl: Optional[pulumi.Input[int]] = None,
@@ -71,7 +69,6 @@ class SecretBackendArgs:
71
69
  :param pulumi.Input[bool] disable_remount: If set, opts out of mount migration on path updates.
72
70
  See here for more info on [Mount Migration](https://www.vaultproject.io/docs/concepts/mount-migration)
73
71
  :param pulumi.Input[bool] discoverdn: Use anonymous bind to discover the bind Distinguished Name of a user.
74
- :param pulumi.Input[str] formatter: **Deprecated** use `password_policy`. Text to insert the password into, ex. "customPrefix{{PASSWORD}}customSuffix".
75
72
  :param pulumi.Input[str] groupattr: LDAP attribute to follow on objects returned by <groupfilter> in order to enumerate
76
73
  user group membership. Examples: `cn` or `memberOf`, etc. Defaults to `cn`.
77
74
  :param pulumi.Input[str] groupdn: LDAP search base to use for group membership search (eg: ou=Groups,dc=example,dc=org).
@@ -81,15 +78,13 @@ class SecretBackendArgs:
81
78
  Defaults to `false`.
82
79
  :param pulumi.Input[int] last_rotation_tolerance: The number of seconds after a Vault rotation where, if Active Directory
83
80
  shows a later rotation, it should be considered out-of-band
84
- :param pulumi.Input[int] length: **Deprecated** use `password_policy`. The desired length of passwords that Vault generates.
85
- *Mutually exclusive with `password_policy` on vault-1.11+*
86
81
  :param pulumi.Input[bool] local: Mark the secrets engine as local-only. Local engines are not replicated or removed by
87
82
  replication.Tolerance duration to use when checking the last rotation time.
88
83
  :param pulumi.Input[int] max_lease_ttl_seconds: Maximum possible lease duration for secrets in seconds.
89
84
  :param pulumi.Input[int] max_ttl: In seconds, the maximum password time-to-live.
90
85
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
91
86
  The value should not contain leading or trailing forward slashes.
92
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
87
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
93
88
  *Available only for Vault Enterprise*.
94
89
  :param pulumi.Input[str] password_policy: Name of the password policy to use to generate passwords.
95
90
  :param pulumi.Input[int] request_timeout: Timeout, in seconds, for the connection when making requests against the server
@@ -138,11 +133,6 @@ class SecretBackendArgs:
138
133
  pulumi.set(__self__, "disable_remount", disable_remount)
139
134
  if discoverdn is not None:
140
135
  pulumi.set(__self__, "discoverdn", discoverdn)
141
- if formatter is not None:
142
- warnings.warn("""Formatter is deprecated and password_policy should be used with Vault >= 1.5.""", DeprecationWarning)
143
- pulumi.log.warn("""formatter is deprecated: Formatter is deprecated and password_policy should be used with Vault >= 1.5.""")
144
- if formatter is not None:
145
- pulumi.set(__self__, "formatter", formatter)
146
136
  if groupattr is not None:
147
137
  pulumi.set(__self__, "groupattr", groupattr)
148
138
  if groupdn is not None:
@@ -153,11 +143,6 @@ class SecretBackendArgs:
153
143
  pulumi.set(__self__, "insecure_tls", insecure_tls)
154
144
  if last_rotation_tolerance is not None:
155
145
  pulumi.set(__self__, "last_rotation_tolerance", last_rotation_tolerance)
156
- if length is not None:
157
- warnings.warn("""Length is deprecated and password_policy should be used with Vault >= 1.5.""", DeprecationWarning)
158
- pulumi.log.warn("""length is deprecated: Length is deprecated and password_policy should be used with Vault >= 1.5.""")
159
- if length is not None:
160
- pulumi.set(__self__, "length", length)
161
146
  if local is not None:
162
147
  pulumi.set(__self__, "local", local)
163
148
  if max_lease_ttl_seconds is not None:
@@ -353,21 +338,6 @@ class SecretBackendArgs:
353
338
  def discoverdn(self, value: Optional[pulumi.Input[bool]]):
354
339
  pulumi.set(self, "discoverdn", value)
355
340
 
356
- @property
357
- @pulumi.getter
358
- def formatter(self) -> Optional[pulumi.Input[str]]:
359
- """
360
- **Deprecated** use `password_policy`. Text to insert the password into, ex. "customPrefix{{PASSWORD}}customSuffix".
361
- """
362
- warnings.warn("""Formatter is deprecated and password_policy should be used with Vault >= 1.5.""", DeprecationWarning)
363
- pulumi.log.warn("""formatter is deprecated: Formatter is deprecated and password_policy should be used with Vault >= 1.5.""")
364
-
365
- return pulumi.get(self, "formatter")
366
-
367
- @formatter.setter
368
- def formatter(self, value: Optional[pulumi.Input[str]]):
369
- pulumi.set(self, "formatter", value)
370
-
371
341
  @property
372
342
  @pulumi.getter
373
343
  def groupattr(self) -> Optional[pulumi.Input[str]]:
@@ -432,22 +402,6 @@ class SecretBackendArgs:
432
402
  def last_rotation_tolerance(self, value: Optional[pulumi.Input[int]]):
433
403
  pulumi.set(self, "last_rotation_tolerance", value)
434
404
 
435
- @property
436
- @pulumi.getter
437
- def length(self) -> Optional[pulumi.Input[int]]:
438
- """
439
- **Deprecated** use `password_policy`. The desired length of passwords that Vault generates.
440
- *Mutually exclusive with `password_policy` on vault-1.11+*
441
- """
442
- warnings.warn("""Length is deprecated and password_policy should be used with Vault >= 1.5.""", DeprecationWarning)
443
- pulumi.log.warn("""length is deprecated: Length is deprecated and password_policy should be used with Vault >= 1.5.""")
444
-
445
- return pulumi.get(self, "length")
446
-
447
- @length.setter
448
- def length(self, value: Optional[pulumi.Input[int]]):
449
- pulumi.set(self, "length", value)
450
-
451
405
  @property
452
406
  @pulumi.getter
453
407
  def local(self) -> Optional[pulumi.Input[bool]]:
@@ -491,7 +445,7 @@ class SecretBackendArgs:
491
445
  """
492
446
  The namespace to provision the resource in.
493
447
  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).
448
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
495
449
  *Available only for Vault Enterprise*.
496
450
  """
497
451
  return pulumi.get(self, "namespace")
@@ -671,13 +625,11 @@ class _SecretBackendState:
671
625
  description: Optional[pulumi.Input[str]] = None,
672
626
  disable_remount: Optional[pulumi.Input[bool]] = None,
673
627
  discoverdn: Optional[pulumi.Input[bool]] = None,
674
- formatter: Optional[pulumi.Input[str]] = None,
675
628
  groupattr: Optional[pulumi.Input[str]] = None,
676
629
  groupdn: Optional[pulumi.Input[str]] = None,
677
630
  groupfilter: Optional[pulumi.Input[str]] = None,
678
631
  insecure_tls: Optional[pulumi.Input[bool]] = None,
679
632
  last_rotation_tolerance: Optional[pulumi.Input[int]] = None,
680
- length: Optional[pulumi.Input[int]] = None,
681
633
  local: Optional[pulumi.Input[bool]] = None,
682
634
  max_lease_ttl_seconds: Optional[pulumi.Input[int]] = None,
683
635
  max_ttl: Optional[pulumi.Input[int]] = None,
@@ -715,7 +667,6 @@ class _SecretBackendState:
715
667
  :param pulumi.Input[bool] disable_remount: If set, opts out of mount migration on path updates.
716
668
  See here for more info on [Mount Migration](https://www.vaultproject.io/docs/concepts/mount-migration)
717
669
  :param pulumi.Input[bool] discoverdn: Use anonymous bind to discover the bind Distinguished Name of a user.
718
- :param pulumi.Input[str] formatter: **Deprecated** use `password_policy`. Text to insert the password into, ex. "customPrefix{{PASSWORD}}customSuffix".
719
670
  :param pulumi.Input[str] groupattr: LDAP attribute to follow on objects returned by <groupfilter> in order to enumerate
720
671
  user group membership. Examples: `cn` or `memberOf`, etc. Defaults to `cn`.
721
672
  :param pulumi.Input[str] groupdn: LDAP search base to use for group membership search (eg: ou=Groups,dc=example,dc=org).
@@ -725,15 +676,13 @@ class _SecretBackendState:
725
676
  Defaults to `false`.
726
677
  :param pulumi.Input[int] last_rotation_tolerance: The number of seconds after a Vault rotation where, if Active Directory
727
678
  shows a later rotation, it should be considered out-of-band
728
- :param pulumi.Input[int] length: **Deprecated** use `password_policy`. The desired length of passwords that Vault generates.
729
- *Mutually exclusive with `password_policy` on vault-1.11+*
730
679
  :param pulumi.Input[bool] local: Mark the secrets engine as local-only. Local engines are not replicated or removed by
731
680
  replication.Tolerance duration to use when checking the last rotation time.
732
681
  :param pulumi.Input[int] max_lease_ttl_seconds: Maximum possible lease duration for secrets in seconds.
733
682
  :param pulumi.Input[int] max_ttl: In seconds, the maximum password time-to-live.
734
683
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
735
684
  The value should not contain leading or trailing forward slashes.
736
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
685
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
737
686
  *Available only for Vault Enterprise*.
738
687
  :param pulumi.Input[str] password_policy: Name of the password policy to use to generate passwords.
739
688
  :param pulumi.Input[int] request_timeout: Timeout, in seconds, for the connection when making requests against the server
@@ -784,11 +733,6 @@ class _SecretBackendState:
784
733
  pulumi.set(__self__, "disable_remount", disable_remount)
785
734
  if discoverdn is not None:
786
735
  pulumi.set(__self__, "discoverdn", discoverdn)
787
- if formatter is not None:
788
- warnings.warn("""Formatter is deprecated and password_policy should be used with Vault >= 1.5.""", DeprecationWarning)
789
- pulumi.log.warn("""formatter is deprecated: Formatter is deprecated and password_policy should be used with Vault >= 1.5.""")
790
- if formatter is not None:
791
- pulumi.set(__self__, "formatter", formatter)
792
736
  if groupattr is not None:
793
737
  pulumi.set(__self__, "groupattr", groupattr)
794
738
  if groupdn is not None:
@@ -799,11 +743,6 @@ class _SecretBackendState:
799
743
  pulumi.set(__self__, "insecure_tls", insecure_tls)
800
744
  if last_rotation_tolerance is not None:
801
745
  pulumi.set(__self__, "last_rotation_tolerance", last_rotation_tolerance)
802
- if length is not None:
803
- warnings.warn("""Length is deprecated and password_policy should be used with Vault >= 1.5.""", DeprecationWarning)
804
- pulumi.log.warn("""length is deprecated: Length is deprecated and password_policy should be used with Vault >= 1.5.""")
805
- if length is not None:
806
- pulumi.set(__self__, "length", length)
807
746
  if local is not None:
808
747
  pulumi.set(__self__, "local", local)
809
748
  if max_lease_ttl_seconds is not None:
@@ -999,21 +938,6 @@ class _SecretBackendState:
999
938
  def discoverdn(self, value: Optional[pulumi.Input[bool]]):
1000
939
  pulumi.set(self, "discoverdn", value)
1001
940
 
1002
- @property
1003
- @pulumi.getter
1004
- def formatter(self) -> Optional[pulumi.Input[str]]:
1005
- """
1006
- **Deprecated** use `password_policy`. Text to insert the password into, ex. "customPrefix{{PASSWORD}}customSuffix".
1007
- """
1008
- warnings.warn("""Formatter is deprecated and password_policy should be used with Vault >= 1.5.""", DeprecationWarning)
1009
- pulumi.log.warn("""formatter is deprecated: Formatter is deprecated and password_policy should be used with Vault >= 1.5.""")
1010
-
1011
- return pulumi.get(self, "formatter")
1012
-
1013
- @formatter.setter
1014
- def formatter(self, value: Optional[pulumi.Input[str]]):
1015
- pulumi.set(self, "formatter", value)
1016
-
1017
941
  @property
1018
942
  @pulumi.getter
1019
943
  def groupattr(self) -> Optional[pulumi.Input[str]]:
@@ -1078,22 +1002,6 @@ class _SecretBackendState:
1078
1002
  def last_rotation_tolerance(self, value: Optional[pulumi.Input[int]]):
1079
1003
  pulumi.set(self, "last_rotation_tolerance", value)
1080
1004
 
1081
- @property
1082
- @pulumi.getter
1083
- def length(self) -> Optional[pulumi.Input[int]]:
1084
- """
1085
- **Deprecated** use `password_policy`. The desired length of passwords that Vault generates.
1086
- *Mutually exclusive with `password_policy` on vault-1.11+*
1087
- """
1088
- warnings.warn("""Length is deprecated and password_policy should be used with Vault >= 1.5.""", DeprecationWarning)
1089
- pulumi.log.warn("""length is deprecated: Length is deprecated and password_policy should be used with Vault >= 1.5.""")
1090
-
1091
- return pulumi.get(self, "length")
1092
-
1093
- @length.setter
1094
- def length(self, value: Optional[pulumi.Input[int]]):
1095
- pulumi.set(self, "length", value)
1096
-
1097
1005
  @property
1098
1006
  @pulumi.getter
1099
1007
  def local(self) -> Optional[pulumi.Input[bool]]:
@@ -1137,7 +1045,7 @@ class _SecretBackendState:
1137
1045
  """
1138
1046
  The namespace to provision the resource in.
1139
1047
  The value should not contain leading or trailing forward slashes.
1140
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
1048
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
1141
1049
  *Available only for Vault Enterprise*.
1142
1050
  """
1143
1051
  return pulumi.get(self, "namespace")
@@ -1319,13 +1227,11 @@ class SecretBackend(pulumi.CustomResource):
1319
1227
  description: Optional[pulumi.Input[str]] = None,
1320
1228
  disable_remount: Optional[pulumi.Input[bool]] = None,
1321
1229
  discoverdn: Optional[pulumi.Input[bool]] = None,
1322
- formatter: Optional[pulumi.Input[str]] = None,
1323
1230
  groupattr: Optional[pulumi.Input[str]] = None,
1324
1231
  groupdn: Optional[pulumi.Input[str]] = None,
1325
1232
  groupfilter: Optional[pulumi.Input[str]] = None,
1326
1233
  insecure_tls: Optional[pulumi.Input[bool]] = None,
1327
1234
  last_rotation_tolerance: Optional[pulumi.Input[int]] = None,
1328
- length: Optional[pulumi.Input[int]] = None,
1329
1235
  local: Optional[pulumi.Input[bool]] = None,
1330
1236
  max_lease_ttl_seconds: Optional[pulumi.Input[int]] = None,
1331
1237
  max_ttl: Optional[pulumi.Input[int]] = None,
@@ -1390,7 +1296,6 @@ class SecretBackend(pulumi.CustomResource):
1390
1296
  :param pulumi.Input[bool] disable_remount: If set, opts out of mount migration on path updates.
1391
1297
  See here for more info on [Mount Migration](https://www.vaultproject.io/docs/concepts/mount-migration)
1392
1298
  :param pulumi.Input[bool] discoverdn: Use anonymous bind to discover the bind Distinguished Name of a user.
1393
- :param pulumi.Input[str] formatter: **Deprecated** use `password_policy`. Text to insert the password into, ex. "customPrefix{{PASSWORD}}customSuffix".
1394
1299
  :param pulumi.Input[str] groupattr: LDAP attribute to follow on objects returned by <groupfilter> in order to enumerate
1395
1300
  user group membership. Examples: `cn` or `memberOf`, etc. Defaults to `cn`.
1396
1301
  :param pulumi.Input[str] groupdn: LDAP search base to use for group membership search (eg: ou=Groups,dc=example,dc=org).
@@ -1400,15 +1305,13 @@ class SecretBackend(pulumi.CustomResource):
1400
1305
  Defaults to `false`.
1401
1306
  :param pulumi.Input[int] last_rotation_tolerance: The number of seconds after a Vault rotation where, if Active Directory
1402
1307
  shows a later rotation, it should be considered out-of-band
1403
- :param pulumi.Input[int] length: **Deprecated** use `password_policy`. The desired length of passwords that Vault generates.
1404
- *Mutually exclusive with `password_policy` on vault-1.11+*
1405
1308
  :param pulumi.Input[bool] local: Mark the secrets engine as local-only. Local engines are not replicated or removed by
1406
1309
  replication.Tolerance duration to use when checking the last rotation time.
1407
1310
  :param pulumi.Input[int] max_lease_ttl_seconds: Maximum possible lease duration for secrets in seconds.
1408
1311
  :param pulumi.Input[int] max_ttl: In seconds, the maximum password time-to-live.
1409
1312
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
1410
1313
  The value should not contain leading or trailing forward slashes.
1411
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
1314
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
1412
1315
  *Available only for Vault Enterprise*.
1413
1316
  :param pulumi.Input[str] password_policy: Name of the password policy to use to generate passwords.
1414
1317
  :param pulumi.Input[int] request_timeout: Timeout, in seconds, for the connection when making requests against the server
@@ -1493,13 +1396,11 @@ class SecretBackend(pulumi.CustomResource):
1493
1396
  description: Optional[pulumi.Input[str]] = None,
1494
1397
  disable_remount: Optional[pulumi.Input[bool]] = None,
1495
1398
  discoverdn: Optional[pulumi.Input[bool]] = None,
1496
- formatter: Optional[pulumi.Input[str]] = None,
1497
1399
  groupattr: Optional[pulumi.Input[str]] = None,
1498
1400
  groupdn: Optional[pulumi.Input[str]] = None,
1499
1401
  groupfilter: Optional[pulumi.Input[str]] = None,
1500
1402
  insecure_tls: Optional[pulumi.Input[bool]] = None,
1501
1403
  last_rotation_tolerance: Optional[pulumi.Input[int]] = None,
1502
- length: Optional[pulumi.Input[int]] = None,
1503
1404
  local: Optional[pulumi.Input[bool]] = None,
1504
1405
  max_lease_ttl_seconds: Optional[pulumi.Input[int]] = None,
1505
1406
  max_ttl: Optional[pulumi.Input[int]] = None,
@@ -1542,13 +1443,11 @@ class SecretBackend(pulumi.CustomResource):
1542
1443
  __props__.__dict__["description"] = description
1543
1444
  __props__.__dict__["disable_remount"] = disable_remount
1544
1445
  __props__.__dict__["discoverdn"] = discoverdn
1545
- __props__.__dict__["formatter"] = formatter
1546
1446
  __props__.__dict__["groupattr"] = groupattr
1547
1447
  __props__.__dict__["groupdn"] = groupdn
1548
1448
  __props__.__dict__["groupfilter"] = groupfilter
1549
1449
  __props__.__dict__["insecure_tls"] = insecure_tls
1550
1450
  __props__.__dict__["last_rotation_tolerance"] = last_rotation_tolerance
1551
- __props__.__dict__["length"] = length
1552
1451
  __props__.__dict__["local"] = local
1553
1452
  __props__.__dict__["max_lease_ttl_seconds"] = max_lease_ttl_seconds
1554
1453
  __props__.__dict__["max_ttl"] = max_ttl
@@ -1590,13 +1489,11 @@ class SecretBackend(pulumi.CustomResource):
1590
1489
  description: Optional[pulumi.Input[str]] = None,
1591
1490
  disable_remount: Optional[pulumi.Input[bool]] = None,
1592
1491
  discoverdn: Optional[pulumi.Input[bool]] = None,
1593
- formatter: Optional[pulumi.Input[str]] = None,
1594
1492
  groupattr: Optional[pulumi.Input[str]] = None,
1595
1493
  groupdn: Optional[pulumi.Input[str]] = None,
1596
1494
  groupfilter: Optional[pulumi.Input[str]] = None,
1597
1495
  insecure_tls: Optional[pulumi.Input[bool]] = None,
1598
1496
  last_rotation_tolerance: Optional[pulumi.Input[int]] = None,
1599
- length: Optional[pulumi.Input[int]] = None,
1600
1497
  local: Optional[pulumi.Input[bool]] = None,
1601
1498
  max_lease_ttl_seconds: Optional[pulumi.Input[int]] = None,
1602
1499
  max_ttl: Optional[pulumi.Input[int]] = None,
@@ -1639,7 +1536,6 @@ class SecretBackend(pulumi.CustomResource):
1639
1536
  :param pulumi.Input[bool] disable_remount: If set, opts out of mount migration on path updates.
1640
1537
  See here for more info on [Mount Migration](https://www.vaultproject.io/docs/concepts/mount-migration)
1641
1538
  :param pulumi.Input[bool] discoverdn: Use anonymous bind to discover the bind Distinguished Name of a user.
1642
- :param pulumi.Input[str] formatter: **Deprecated** use `password_policy`. Text to insert the password into, ex. "customPrefix{{PASSWORD}}customSuffix".
1643
1539
  :param pulumi.Input[str] groupattr: LDAP attribute to follow on objects returned by <groupfilter> in order to enumerate
1644
1540
  user group membership. Examples: `cn` or `memberOf`, etc. Defaults to `cn`.
1645
1541
  :param pulumi.Input[str] groupdn: LDAP search base to use for group membership search (eg: ou=Groups,dc=example,dc=org).
@@ -1649,15 +1545,13 @@ class SecretBackend(pulumi.CustomResource):
1649
1545
  Defaults to `false`.
1650
1546
  :param pulumi.Input[int] last_rotation_tolerance: The number of seconds after a Vault rotation where, if Active Directory
1651
1547
  shows a later rotation, it should be considered out-of-band
1652
- :param pulumi.Input[int] length: **Deprecated** use `password_policy`. The desired length of passwords that Vault generates.
1653
- *Mutually exclusive with `password_policy` on vault-1.11+*
1654
1548
  :param pulumi.Input[bool] local: Mark the secrets engine as local-only. Local engines are not replicated or removed by
1655
1549
  replication.Tolerance duration to use when checking the last rotation time.
1656
1550
  :param pulumi.Input[int] max_lease_ttl_seconds: Maximum possible lease duration for secrets in seconds.
1657
1551
  :param pulumi.Input[int] max_ttl: In seconds, the maximum password time-to-live.
1658
1552
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
1659
1553
  The value should not contain leading or trailing forward slashes.
1660
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
1554
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
1661
1555
  *Available only for Vault Enterprise*.
1662
1556
  :param pulumi.Input[str] password_policy: Name of the password policy to use to generate passwords.
1663
1557
  :param pulumi.Input[int] request_timeout: Timeout, in seconds, for the connection when making requests against the server
@@ -1699,13 +1593,11 @@ class SecretBackend(pulumi.CustomResource):
1699
1593
  __props__.__dict__["description"] = description
1700
1594
  __props__.__dict__["disable_remount"] = disable_remount
1701
1595
  __props__.__dict__["discoverdn"] = discoverdn
1702
- __props__.__dict__["formatter"] = formatter
1703
1596
  __props__.__dict__["groupattr"] = groupattr
1704
1597
  __props__.__dict__["groupdn"] = groupdn
1705
1598
  __props__.__dict__["groupfilter"] = groupfilter
1706
1599
  __props__.__dict__["insecure_tls"] = insecure_tls
1707
1600
  __props__.__dict__["last_rotation_tolerance"] = last_rotation_tolerance
1708
- __props__.__dict__["length"] = length
1709
1601
  __props__.__dict__["local"] = local
1710
1602
  __props__.__dict__["max_lease_ttl_seconds"] = max_lease_ttl_seconds
1711
1603
  __props__.__dict__["max_ttl"] = max_ttl
@@ -1834,17 +1726,6 @@ class SecretBackend(pulumi.CustomResource):
1834
1726
  """
1835
1727
  return pulumi.get(self, "discoverdn")
1836
1728
 
1837
- @property
1838
- @pulumi.getter
1839
- def formatter(self) -> pulumi.Output[str]:
1840
- """
1841
- **Deprecated** use `password_policy`. Text to insert the password into, ex. "customPrefix{{PASSWORD}}customSuffix".
1842
- """
1843
- warnings.warn("""Formatter is deprecated and password_policy should be used with Vault >= 1.5.""", DeprecationWarning)
1844
- pulumi.log.warn("""formatter is deprecated: Formatter is deprecated and password_policy should be used with Vault >= 1.5.""")
1845
-
1846
- return pulumi.get(self, "formatter")
1847
-
1848
1729
  @property
1849
1730
  @pulumi.getter
1850
1731
  def groupattr(self) -> pulumi.Output[Optional[str]]:
@@ -1889,18 +1770,6 @@ class SecretBackend(pulumi.CustomResource):
1889
1770
  """
1890
1771
  return pulumi.get(self, "last_rotation_tolerance")
1891
1772
 
1892
- @property
1893
- @pulumi.getter
1894
- def length(self) -> pulumi.Output[int]:
1895
- """
1896
- **Deprecated** use `password_policy`. The desired length of passwords that Vault generates.
1897
- *Mutually exclusive with `password_policy` on vault-1.11+*
1898
- """
1899
- warnings.warn("""Length is deprecated and password_policy should be used with Vault >= 1.5.""", DeprecationWarning)
1900
- pulumi.log.warn("""length is deprecated: Length is deprecated and password_policy should be used with Vault >= 1.5.""")
1901
-
1902
- return pulumi.get(self, "length")
1903
-
1904
1773
  @property
1905
1774
  @pulumi.getter
1906
1775
  def local(self) -> pulumi.Output[Optional[bool]]:
@@ -1932,7 +1801,7 @@ class SecretBackend(pulumi.CustomResource):
1932
1801
  """
1933
1802
  The namespace to provision the resource in.
1934
1803
  The value should not contain leading or trailing forward slashes.
1935
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
1804
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
1936
1805
  *Available only for Vault Enterprise*.
1937
1806
  """
1938
1807
  return pulumi.get(self, "namespace")
@@ -33,7 +33,7 @@ class SecretLibraryArgs:
33
33
  Must be unique within the backend.
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[int] ttl: The password time-to-live in seconds. Defaults to the configuration
39
39
  ttl if not provided.
@@ -120,7 +120,7 @@ class SecretLibraryArgs:
120
120
  """
121
121
  The namespace to provision the resource in.
122
122
  The value should not contain leading or trailing forward slashes.
123
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
123
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
124
124
  *Available only for Vault Enterprise*.
125
125
  """
126
126
  return pulumi.get(self, "namespace")
@@ -164,7 +164,7 @@ class _SecretLibraryState:
164
164
  Must be unique within the backend.
165
165
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
166
166
  The value should not contain leading or trailing forward slashes.
167
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
167
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
168
168
  *Available only for Vault Enterprise*.
169
169
  :param pulumi.Input[Sequence[pulumi.Input[str]]] service_account_names: Specifies the slice of service accounts mapped to this set.
170
170
  :param pulumi.Input[int] ttl: The password time-to-live in seconds. Defaults to the configuration
@@ -242,7 +242,7 @@ class _SecretLibraryState:
242
242
  """
243
243
  The namespace to provision the resource in.
244
244
  The value should not contain leading or trailing forward slashes.
245
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
245
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
246
246
  *Available only for Vault Enterprise*.
247
247
  """
248
248
  return pulumi.get(self, "namespace")
@@ -336,7 +336,7 @@ class SecretLibrary(pulumi.CustomResource):
336
336
  Must be unique within the backend.
337
337
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
338
338
  The value should not contain leading or trailing forward slashes.
339
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
339
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
340
340
  *Available only for Vault Enterprise*.
341
341
  :param pulumi.Input[Sequence[pulumi.Input[str]]] service_account_names: Specifies the slice of service accounts mapped to this set.
342
342
  :param pulumi.Input[int] ttl: The password time-to-live in seconds. Defaults to the configuration
@@ -458,7 +458,7 @@ class SecretLibrary(pulumi.CustomResource):
458
458
  Must be unique within the backend.
459
459
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
460
460
  The value should not contain leading or trailing forward slashes.
461
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
461
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
462
462
  *Available only for Vault Enterprise*.
463
463
  :param pulumi.Input[Sequence[pulumi.Input[str]]] service_account_names: Specifies the slice of service accounts mapped to this set.
464
464
  :param pulumi.Input[int] ttl: The password time-to-live in seconds. Defaults to the configuration
@@ -518,7 +518,7 @@ class SecretLibrary(pulumi.CustomResource):
518
518
  """
519
519
  The namespace to provision the resource in.
520
520
  The value should not contain leading or trailing forward slashes.
521
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
521
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
522
522
  *Available only for Vault Enterprise*.
523
523
  """
524
524
  return pulumi.get(self, "namespace")
@@ -29,7 +29,7 @@ class SecretRoleArgs:
29
29
  account mapped to this role.
30
30
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
31
31
  The value should not contain leading or trailing forward slashes.
32
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
32
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
33
33
  *Available only for Vault Enterprise*.
34
34
  :param pulumi.Input[int] ttl: The password time-to-live in seconds. Defaults to the configuration
35
35
  ttl if not provided.
@@ -87,7 +87,7 @@ class SecretRoleArgs:
87
87
  """
88
88
  The namespace to provision the resource in.
89
89
  The value should not contain leading or trailing forward slashes.
90
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
90
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
91
91
  *Available only for Vault Enterprise*.
92
92
  """
93
93
  return pulumi.get(self, "namespace")
@@ -127,7 +127,7 @@ class _SecretRoleState:
127
127
  :param pulumi.Input[str] last_vault_rotation: Timestamp of the last password rotation by Vault.
128
128
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
129
129
  The value should not contain leading or trailing forward slashes.
130
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
130
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
131
131
  *Available only for Vault Enterprise*.
132
132
  :param pulumi.Input[str] password_last_set: Timestamp of the last password set by Vault.
133
133
  :param pulumi.Input[str] role: The name to identify this role within the backend.
@@ -183,7 +183,7 @@ class _SecretRoleState:
183
183
  """
184
184
  The namespace to provision the resource in.
185
185
  The value should not contain leading or trailing forward slashes.
186
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
186
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
187
187
  *Available only for Vault Enterprise*.
188
188
  """
189
189
  return pulumi.get(self, "namespace")
@@ -292,7 +292,7 @@ class SecretRole(pulumi.CustomResource):
292
292
  with no leading or trailing `/`s.
293
293
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
294
294
  The value should not contain leading or trailing forward slashes.
295
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
295
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
296
296
  *Available only for Vault Enterprise*.
297
297
  :param pulumi.Input[str] role: The name to identify this role within the backend.
298
298
  Must be unique within the backend.
@@ -409,7 +409,7 @@ class SecretRole(pulumi.CustomResource):
409
409
  :param pulumi.Input[str] last_vault_rotation: Timestamp of the last password rotation by Vault.
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[str] password_last_set: Timestamp of the last password set by Vault.
415
415
  :param pulumi.Input[str] role: The name to identify this role within the backend.
@@ -455,7 +455,7 @@ class SecretRole(pulumi.CustomResource):
455
455
  """
456
456
  The namespace to provision the resource in.
457
457
  The value should not contain leading or trailing forward slashes.
458
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
458
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
459
459
  *Available only for Vault Enterprise*.
460
460
  """
461
461
  return pulumi.get(self, "namespace")