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
@@ -16,6 +16,7 @@ class SecretBackendConfigUrlsArgs:
16
16
  def __init__(__self__, *,
17
17
  backend: pulumi.Input[str],
18
18
  crl_distribution_points: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
19
+ enable_templating: Optional[pulumi.Input[bool]] = None,
19
20
  issuing_certificates: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
20
21
  namespace: Optional[pulumi.Input[str]] = None,
21
22
  ocsp_servers: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
@@ -23,16 +24,19 @@ class SecretBackendConfigUrlsArgs:
23
24
  The set of arguments for constructing a SecretBackendConfigUrls resource.
24
25
  :param pulumi.Input[str] backend: The path the PKI secret backend is mounted at, with no leading or trailing `/`s.
25
26
  :param pulumi.Input[Sequence[pulumi.Input[str]]] crl_distribution_points: Specifies the URL values for the CRL Distribution Points field.
27
+ :param pulumi.Input[bool] enable_templating: Specifies that templating of AIA fields is allowed.
26
28
  :param pulumi.Input[Sequence[pulumi.Input[str]]] issuing_certificates: Specifies the URL values for the Issuing Certificate field.
27
29
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
28
30
  The value should not contain leading or trailing forward slashes.
29
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
31
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
30
32
  *Available only for Vault Enterprise*.
31
33
  :param pulumi.Input[Sequence[pulumi.Input[str]]] ocsp_servers: Specifies the URL values for the OCSP Servers field.
32
34
  """
33
35
  pulumi.set(__self__, "backend", backend)
34
36
  if crl_distribution_points is not None:
35
37
  pulumi.set(__self__, "crl_distribution_points", crl_distribution_points)
38
+ if enable_templating is not None:
39
+ pulumi.set(__self__, "enable_templating", enable_templating)
36
40
  if issuing_certificates is not None:
37
41
  pulumi.set(__self__, "issuing_certificates", issuing_certificates)
38
42
  if namespace is not None:
@@ -64,6 +68,18 @@ class SecretBackendConfigUrlsArgs:
64
68
  def crl_distribution_points(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
65
69
  pulumi.set(self, "crl_distribution_points", value)
66
70
 
71
+ @property
72
+ @pulumi.getter(name="enableTemplating")
73
+ def enable_templating(self) -> Optional[pulumi.Input[bool]]:
74
+ """
75
+ Specifies that templating of AIA fields is allowed.
76
+ """
77
+ return pulumi.get(self, "enable_templating")
78
+
79
+ @enable_templating.setter
80
+ def enable_templating(self, value: Optional[pulumi.Input[bool]]):
81
+ pulumi.set(self, "enable_templating", value)
82
+
67
83
  @property
68
84
  @pulumi.getter(name="issuingCertificates")
69
85
  def issuing_certificates(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
@@ -82,7 +98,7 @@ class SecretBackendConfigUrlsArgs:
82
98
  """
83
99
  The namespace to provision the resource in.
84
100
  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).
101
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
86
102
  *Available only for Vault Enterprise*.
87
103
  """
88
104
  return pulumi.get(self, "namespace")
@@ -109,6 +125,7 @@ class _SecretBackendConfigUrlsState:
109
125
  def __init__(__self__, *,
110
126
  backend: Optional[pulumi.Input[str]] = None,
111
127
  crl_distribution_points: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
128
+ enable_templating: Optional[pulumi.Input[bool]] = None,
112
129
  issuing_certificates: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
113
130
  namespace: Optional[pulumi.Input[str]] = None,
114
131
  ocsp_servers: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
@@ -116,10 +133,11 @@ class _SecretBackendConfigUrlsState:
116
133
  Input properties used for looking up and filtering SecretBackendConfigUrls resources.
117
134
  :param pulumi.Input[str] backend: The path the PKI secret backend is mounted at, with no leading or trailing `/`s.
118
135
  :param pulumi.Input[Sequence[pulumi.Input[str]]] crl_distribution_points: Specifies the URL values for the CRL Distribution Points field.
136
+ :param pulumi.Input[bool] enable_templating: Specifies that templating of AIA fields is allowed.
119
137
  :param pulumi.Input[Sequence[pulumi.Input[str]]] issuing_certificates: Specifies the URL values for the Issuing Certificate field.
120
138
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
121
139
  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).
140
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
123
141
  *Available only for Vault Enterprise*.
124
142
  :param pulumi.Input[Sequence[pulumi.Input[str]]] ocsp_servers: Specifies the URL values for the OCSP Servers field.
125
143
  """
@@ -127,6 +145,8 @@ class _SecretBackendConfigUrlsState:
127
145
  pulumi.set(__self__, "backend", backend)
128
146
  if crl_distribution_points is not None:
129
147
  pulumi.set(__self__, "crl_distribution_points", crl_distribution_points)
148
+ if enable_templating is not None:
149
+ pulumi.set(__self__, "enable_templating", enable_templating)
130
150
  if issuing_certificates is not None:
131
151
  pulumi.set(__self__, "issuing_certificates", issuing_certificates)
132
152
  if namespace is not None:
@@ -158,6 +178,18 @@ class _SecretBackendConfigUrlsState:
158
178
  def crl_distribution_points(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
159
179
  pulumi.set(self, "crl_distribution_points", value)
160
180
 
181
+ @property
182
+ @pulumi.getter(name="enableTemplating")
183
+ def enable_templating(self) -> Optional[pulumi.Input[bool]]:
184
+ """
185
+ Specifies that templating of AIA fields is allowed.
186
+ """
187
+ return pulumi.get(self, "enable_templating")
188
+
189
+ @enable_templating.setter
190
+ def enable_templating(self, value: Optional[pulumi.Input[bool]]):
191
+ pulumi.set(self, "enable_templating", value)
192
+
161
193
  @property
162
194
  @pulumi.getter(name="issuingCertificates")
163
195
  def issuing_certificates(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
@@ -176,7 +208,7 @@ class _SecretBackendConfigUrlsState:
176
208
  """
177
209
  The namespace to provision the resource in.
178
210
  The value should not contain leading or trailing forward slashes.
179
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
211
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
180
212
  *Available only for Vault Enterprise*.
181
213
  """
182
214
  return pulumi.get(self, "namespace")
@@ -205,6 +237,7 @@ class SecretBackendConfigUrls(pulumi.CustomResource):
205
237
  opts: Optional[pulumi.ResourceOptions] = None,
206
238
  backend: Optional[pulumi.Input[str]] = None,
207
239
  crl_distribution_points: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
240
+ enable_templating: Optional[pulumi.Input[bool]] = None,
208
241
  issuing_certificates: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
209
242
  namespace: Optional[pulumi.Input[str]] = None,
210
243
  ocsp_servers: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
@@ -245,10 +278,11 @@ class SecretBackendConfigUrls(pulumi.CustomResource):
245
278
  :param pulumi.ResourceOptions opts: Options for the resource.
246
279
  :param pulumi.Input[str] backend: The path the PKI secret backend is mounted at, with no leading or trailing `/`s.
247
280
  :param pulumi.Input[Sequence[pulumi.Input[str]]] crl_distribution_points: Specifies the URL values for the CRL Distribution Points field.
281
+ :param pulumi.Input[bool] enable_templating: Specifies that templating of AIA fields is allowed.
248
282
  :param pulumi.Input[Sequence[pulumi.Input[str]]] issuing_certificates: Specifies the URL values for the Issuing Certificate field.
249
283
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
250
284
  The value should not contain leading or trailing forward slashes.
251
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
285
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
252
286
  *Available only for Vault Enterprise*.
253
287
  :param pulumi.Input[Sequence[pulumi.Input[str]]] ocsp_servers: Specifies the URL values for the OCSP Servers field.
254
288
  """
@@ -307,6 +341,7 @@ class SecretBackendConfigUrls(pulumi.CustomResource):
307
341
  opts: Optional[pulumi.ResourceOptions] = None,
308
342
  backend: Optional[pulumi.Input[str]] = None,
309
343
  crl_distribution_points: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
344
+ enable_templating: Optional[pulumi.Input[bool]] = None,
310
345
  issuing_certificates: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
311
346
  namespace: Optional[pulumi.Input[str]] = None,
312
347
  ocsp_servers: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
@@ -323,6 +358,7 @@ class SecretBackendConfigUrls(pulumi.CustomResource):
323
358
  raise TypeError("Missing required property 'backend'")
324
359
  __props__.__dict__["backend"] = backend
325
360
  __props__.__dict__["crl_distribution_points"] = crl_distribution_points
361
+ __props__.__dict__["enable_templating"] = enable_templating
326
362
  __props__.__dict__["issuing_certificates"] = issuing_certificates
327
363
  __props__.__dict__["namespace"] = namespace
328
364
  __props__.__dict__["ocsp_servers"] = ocsp_servers
@@ -338,6 +374,7 @@ class SecretBackendConfigUrls(pulumi.CustomResource):
338
374
  opts: Optional[pulumi.ResourceOptions] = None,
339
375
  backend: Optional[pulumi.Input[str]] = None,
340
376
  crl_distribution_points: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
377
+ enable_templating: Optional[pulumi.Input[bool]] = None,
341
378
  issuing_certificates: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
342
379
  namespace: Optional[pulumi.Input[str]] = None,
343
380
  ocsp_servers: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None) -> 'SecretBackendConfigUrls':
@@ -350,10 +387,11 @@ class SecretBackendConfigUrls(pulumi.CustomResource):
350
387
  :param pulumi.ResourceOptions opts: Options for the resource.
351
388
  :param pulumi.Input[str] backend: The path the PKI secret backend is mounted at, with no leading or trailing `/`s.
352
389
  :param pulumi.Input[Sequence[pulumi.Input[str]]] crl_distribution_points: Specifies the URL values for the CRL Distribution Points field.
390
+ :param pulumi.Input[bool] enable_templating: Specifies that templating of AIA fields is allowed.
353
391
  :param pulumi.Input[Sequence[pulumi.Input[str]]] issuing_certificates: Specifies the URL values for the Issuing Certificate field.
354
392
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
355
393
  The value should not contain leading or trailing forward slashes.
356
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
394
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
357
395
  *Available only for Vault Enterprise*.
358
396
  :param pulumi.Input[Sequence[pulumi.Input[str]]] ocsp_servers: Specifies the URL values for the OCSP Servers field.
359
397
  """
@@ -363,6 +401,7 @@ class SecretBackendConfigUrls(pulumi.CustomResource):
363
401
 
364
402
  __props__.__dict__["backend"] = backend
365
403
  __props__.__dict__["crl_distribution_points"] = crl_distribution_points
404
+ __props__.__dict__["enable_templating"] = enable_templating
366
405
  __props__.__dict__["issuing_certificates"] = issuing_certificates
367
406
  __props__.__dict__["namespace"] = namespace
368
407
  __props__.__dict__["ocsp_servers"] = ocsp_servers
@@ -384,6 +423,14 @@ class SecretBackendConfigUrls(pulumi.CustomResource):
384
423
  """
385
424
  return pulumi.get(self, "crl_distribution_points")
386
425
 
426
+ @property
427
+ @pulumi.getter(name="enableTemplating")
428
+ def enable_templating(self) -> pulumi.Output[Optional[bool]]:
429
+ """
430
+ Specifies that templating of AIA fields is allowed.
431
+ """
432
+ return pulumi.get(self, "enable_templating")
433
+
387
434
  @property
388
435
  @pulumi.getter(name="issuingCertificates")
389
436
  def issuing_certificates(self) -> pulumi.Output[Optional[Sequence[str]]]:
@@ -398,7 +445,7 @@ class SecretBackendConfigUrls(pulumi.CustomResource):
398
445
  """
399
446
  The namespace to provision the resource in.
400
447
  The value should not contain leading or trailing forward slashes.
401
- 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).
402
449
  *Available only for Vault Enterprise*.
403
450
  """
404
451
  return pulumi.get(self, "namespace")
@@ -40,7 +40,7 @@ class SecretBackendCrlConfigArgs:
40
40
  :param pulumi.Input[str] expiry: Specifies the time until expiration.
41
41
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
42
42
  The value should not contain leading or trailing forward slashes.
43
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
43
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
44
44
  *Available only for Vault Enterprise*.
45
45
  :param pulumi.Input[bool] ocsp_disable: Disables the OCSP responder in Vault. **Vault 1.12+**
46
46
  :param pulumi.Input[str] ocsp_expiry: The amount of time an OCSP response can be cached for, useful for OCSP stapling
@@ -178,7 +178,7 @@ class SecretBackendCrlConfigArgs:
178
178
  """
179
179
  The namespace to provision the resource in.
180
180
  The value should not contain leading or trailing forward slashes.
181
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
181
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
182
182
  *Available only for Vault Enterprise*.
183
183
  """
184
184
  return pulumi.get(self, "namespace")
@@ -267,7 +267,7 @@ class _SecretBackendCrlConfigState:
267
267
  :param pulumi.Input[str] expiry: Specifies the time until expiration.
268
268
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
269
269
  The value should not contain leading or trailing forward slashes.
270
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
270
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
271
271
  *Available only for Vault Enterprise*.
272
272
  :param pulumi.Input[bool] ocsp_disable: Disables the OCSP responder in Vault. **Vault 1.12+**
273
273
  :param pulumi.Input[str] ocsp_expiry: The amount of time an OCSP response can be cached for, useful for OCSP stapling
@@ -406,7 +406,7 @@ class _SecretBackendCrlConfigState:
406
406
  """
407
407
  The namespace to provision the resource in.
408
408
  The value should not contain leading or trailing forward slashes.
409
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
409
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
410
410
  *Available only for Vault Enterprise*.
411
411
  """
412
412
  return pulumi.get(self, "namespace")
@@ -520,7 +520,7 @@ class SecretBackendCrlConfig(pulumi.CustomResource):
520
520
  :param pulumi.Input[str] expiry: Specifies the time until expiration.
521
521
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
522
522
  The value should not contain leading or trailing forward slashes.
523
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
523
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
524
524
  *Available only for Vault Enterprise*.
525
525
  :param pulumi.Input[bool] ocsp_disable: Disables the OCSP responder in Vault. **Vault 1.12+**
526
526
  :param pulumi.Input[str] ocsp_expiry: The amount of time an OCSP response can be cached for, useful for OCSP stapling
@@ -650,7 +650,7 @@ class SecretBackendCrlConfig(pulumi.CustomResource):
650
650
  :param pulumi.Input[str] expiry: Specifies the time until expiration.
651
651
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
652
652
  The value should not contain leading or trailing forward slashes.
653
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
653
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
654
654
  *Available only for Vault Enterprise*.
655
655
  :param pulumi.Input[bool] ocsp_disable: Disables the OCSP responder in Vault. **Vault 1.12+**
656
656
  :param pulumi.Input[str] ocsp_expiry: The amount of time an OCSP response can be cached for, useful for OCSP stapling
@@ -749,7 +749,7 @@ class SecretBackendCrlConfig(pulumi.CustomResource):
749
749
  """
750
750
  The namespace to provision the resource in.
751
751
  The value should not contain leading or trailing forward slashes.
752
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
752
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
753
753
  *Available only for Vault Enterprise*.
754
754
  """
755
755
  return pulumi.get(self, "namespace")
@@ -66,7 +66,7 @@ class SecretBackendIntermediateCertRequestArgs:
66
66
  required if `type` is `kms` and it conflicts with `managed_key_id`
67
67
  :param pulumi.Input[str] namespace: 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
  :param pulumi.Input[str] organization: The organization
72
72
  :param pulumi.Input[Sequence[pulumi.Input[str]]] other_sans: List of other SANs
@@ -330,7 +330,7 @@ class SecretBackendIntermediateCertRequestArgs:
330
330
  """
331
331
  The namespace to provision the resource in.
332
332
  The value should not contain leading or trailing forward slashes.
333
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
333
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
334
334
  *Available only for Vault Enterprise*.
335
335
  """
336
336
  return pulumi.get(self, "namespace")
@@ -495,7 +495,7 @@ class _SecretBackendIntermediateCertRequestState:
495
495
  required if `type` is `kms` and it conflicts with `managed_key_id`
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] organization: The organization
501
501
  :param pulumi.Input[Sequence[pulumi.Input[str]]] other_sans: List of other SANs
@@ -785,7 +785,7 @@ class _SecretBackendIntermediateCertRequestState:
785
785
  """
786
786
  The namespace to provision the resource in.
787
787
  The value should not contain leading or trailing forward slashes.
788
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
788
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
789
789
  *Available only for Vault Enterprise*.
790
790
  """
791
791
  return pulumi.get(self, "namespace")
@@ -1000,7 +1000,7 @@ class SecretBackendIntermediateCertRequest(pulumi.CustomResource):
1000
1000
  required if `type` is `kms` and it conflicts with `managed_key_id`
1001
1001
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
1002
1002
  The value should not contain leading or trailing forward slashes.
1003
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
1003
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
1004
1004
  *Available only for Vault Enterprise*.
1005
1005
  :param pulumi.Input[str] organization: The organization
1006
1006
  :param pulumi.Input[Sequence[pulumi.Input[str]]] other_sans: List of other SANs
@@ -1192,7 +1192,7 @@ class SecretBackendIntermediateCertRequest(pulumi.CustomResource):
1192
1192
  required if `type` is `kms` and it conflicts with `managed_key_id`
1193
1193
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
1194
1194
  The value should not contain leading or trailing forward slashes.
1195
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
1195
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
1196
1196
  *Available only for Vault Enterprise*.
1197
1197
  :param pulumi.Input[str] organization: The organization
1198
1198
  :param pulumi.Input[Sequence[pulumi.Input[str]]] other_sans: List of other SANs
@@ -1390,7 +1390,7 @@ class SecretBackendIntermediateCertRequest(pulumi.CustomResource):
1390
1390
  """
1391
1391
  The namespace to provision the resource in.
1392
1392
  The value should not contain leading or trailing forward slashes.
1393
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
1393
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
1394
1394
  *Available only for Vault Enterprise*.
1395
1395
  """
1396
1396
  return pulumi.get(self, "namespace")
@@ -25,7 +25,7 @@ class SecretBackendIntermediateSetSignedArgs:
25
25
  issue and sign operations.
26
26
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
27
27
  The value should not contain leading or trailing forward slashes.
28
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
28
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
29
29
  *Available only for Vault Enterprise*.
30
30
  """
31
31
  pulumi.set(__self__, "backend", backend)
@@ -65,7 +65,7 @@ class SecretBackendIntermediateSetSignedArgs:
65
65
  """
66
66
  The namespace to provision the resource in.
67
67
  The value should not contain leading or trailing forward slashes.
68
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
68
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
69
69
  *Available only for Vault Enterprise*.
70
70
  """
71
71
  return pulumi.get(self, "namespace")
@@ -94,7 +94,7 @@ class _SecretBackendIntermediateSetSignedState:
94
94
  :param pulumi.Input[Sequence[pulumi.Input[str]]] imported_keys: The imported keys indicating which keys were created as part of this request.
95
95
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
96
96
  The value should not contain leading or trailing forward slashes.
97
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
97
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
98
98
  *Available only for Vault Enterprise*.
99
99
  """
100
100
  if backend is not None:
@@ -165,7 +165,7 @@ class _SecretBackendIntermediateSetSignedState:
165
165
  """
166
166
  The namespace to provision the resource in.
167
167
  The value should not contain leading or trailing forward slashes.
168
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
168
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
169
169
  *Available only for Vault Enterprise*.
170
170
  """
171
171
  return pulumi.get(self, "namespace")
@@ -248,7 +248,7 @@ class SecretBackendIntermediateSetSigned(pulumi.CustomResource):
248
248
  issue and sign operations.
249
249
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
250
250
  The value should not contain leading or trailing forward slashes.
251
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
251
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
252
252
  *Available only for Vault Enterprise*.
253
253
  """
254
254
  ...
@@ -380,7 +380,7 @@ class SecretBackendIntermediateSetSigned(pulumi.CustomResource):
380
380
  :param pulumi.Input[Sequence[pulumi.Input[str]]] imported_keys: The imported keys indicating which keys were created as part of this request.
381
381
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
382
382
  The value should not contain leading or trailing forward slashes.
383
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
383
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
384
384
  *Available only for Vault Enterprise*.
385
385
  """
386
386
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
@@ -435,7 +435,7 @@ class SecretBackendIntermediateSetSigned(pulumi.CustomResource):
435
435
  """
436
436
  The namespace to provision the resource in.
437
437
  The value should not contain leading or trailing forward slashes.
438
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
438
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
439
439
  *Available only for Vault Enterprise*.
440
440
  """
441
441
  return pulumi.get(self, "namespace")
@@ -44,7 +44,7 @@ class SecretBackendIssuerArgs:
44
44
  computed CAChain field from, when non-empty.
45
45
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
46
46
  The value should not contain leading or trailing forward slashes.
47
- 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).
48
48
  *Available only for Vault Enterprise*.
49
49
  :param pulumi.Input[Sequence[pulumi.Input[str]]] ocsp_servers: Specifies the URL values for the OCSP Servers field.
50
50
  :param pulumi.Input[str] revocation_signature_algorithm: Which signature algorithm to use
@@ -182,7 +182,7 @@ class SecretBackendIssuerArgs:
182
182
  """
183
183
  The namespace to provision the resource in.
184
184
  The value should not contain leading or trailing forward slashes.
185
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
185
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
186
186
  *Available only for Vault Enterprise*.
187
187
  """
188
188
  return pulumi.get(self, "namespace")
@@ -264,7 +264,7 @@ class _SecretBackendIssuerState:
264
264
  computed CAChain field from, when non-empty.
265
265
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
266
266
  The value should not contain leading or trailing forward slashes.
267
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
267
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
268
268
  *Available only for Vault Enterprise*.
269
269
  :param pulumi.Input[Sequence[pulumi.Input[str]]] ocsp_servers: Specifies the URL values for the OCSP Servers field.
270
270
  :param pulumi.Input[str] revocation_signature_algorithm: Which signature algorithm to use
@@ -418,7 +418,7 @@ class _SecretBackendIssuerState:
418
418
  """
419
419
  The namespace to provision the resource in.
420
420
  The value should not contain leading or trailing forward slashes.
421
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
421
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
422
422
  *Available only for Vault Enterprise*.
423
423
  """
424
424
  return pulumi.get(self, "namespace")
@@ -534,7 +534,7 @@ class SecretBackendIssuer(pulumi.CustomResource):
534
534
  computed CAChain field from, when non-empty.
535
535
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
536
536
  The value should not contain leading or trailing forward slashes.
537
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
537
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
538
538
  *Available only for Vault Enterprise*.
539
539
  :param pulumi.Input[Sequence[pulumi.Input[str]]] ocsp_servers: Specifies the URL values for the OCSP Servers field.
540
540
  :param pulumi.Input[str] revocation_signature_algorithm: Which signature algorithm to use
@@ -680,7 +680,7 @@ class SecretBackendIssuer(pulumi.CustomResource):
680
680
  computed CAChain field from, when non-empty.
681
681
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
682
682
  The value should not contain leading or trailing forward slashes.
683
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
683
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
684
684
  *Available only for Vault Enterprise*.
685
685
  :param pulumi.Input[Sequence[pulumi.Input[str]]] ocsp_servers: Specifies the URL values for the OCSP Servers field.
686
686
  :param pulumi.Input[str] revocation_signature_algorithm: Which signature algorithm to use
@@ -790,7 +790,7 @@ class SecretBackendIssuer(pulumi.CustomResource):
790
790
  """
791
791
  The namespace to provision the resource in.
792
792
  The value should not contain leading or trailing forward slashes.
793
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
793
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
794
794
  *Available only for Vault Enterprise*.
795
795
  """
796
796
  return pulumi.get(self, "namespace")
@@ -37,7 +37,7 @@ class SecretBackendKeyArgs:
37
37
  :param pulumi.Input[str] managed_key_name: The managed key's configured name.
38
38
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
39
39
  The value should not contain leading or trailing forward slashes.
40
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
40
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
41
41
  *Available only for Vault Enterprise*.
42
42
  """
43
43
  pulumi.set(__self__, "backend", backend)
@@ -149,7 +149,7 @@ class SecretBackendKeyArgs:
149
149
  """
150
150
  The namespace to provision the resource in.
151
151
  The value should not contain leading or trailing forward slashes.
152
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
152
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
153
153
  *Available only for Vault Enterprise*.
154
154
  """
155
155
  return pulumi.get(self, "namespace")
@@ -186,7 +186,7 @@ class _SecretBackendKeyState:
186
186
  :param pulumi.Input[str] managed_key_name: The managed key's configured name.
187
187
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
188
188
  The value should not contain leading or trailing forward slashes.
189
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
189
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
190
190
  *Available only for Vault Enterprise*.
191
191
  :param pulumi.Input[str] type: Specifies the type of the key to create. Can be `exported`,`internal` or `kms`.
192
192
  """
@@ -303,7 +303,7 @@ class _SecretBackendKeyState:
303
303
  """
304
304
  The namespace to provision the resource in.
305
305
  The value should not contain leading or trailing forward slashes.
306
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
306
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
307
307
  *Available only for Vault Enterprise*.
308
308
  """
309
309
  return pulumi.get(self, "namespace")
@@ -364,7 +364,7 @@ class SecretBackendKey(pulumi.CustomResource):
364
364
  :param pulumi.Input[str] managed_key_name: The managed key's configured name.
365
365
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
366
366
  The value should not contain leading or trailing forward slashes.
367
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
367
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
368
368
  *Available only for Vault Enterprise*.
369
369
  :param pulumi.Input[str] type: Specifies the type of the key to create. Can be `exported`,`internal` or `kms`.
370
370
  """
@@ -469,7 +469,7 @@ class SecretBackendKey(pulumi.CustomResource):
469
469
  :param pulumi.Input[str] managed_key_name: The managed key's configured name.
470
470
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
471
471
  The value should not contain leading or trailing forward slashes.
472
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
472
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
473
473
  *Available only for Vault Enterprise*.
474
474
  :param pulumi.Input[str] type: Specifies the type of the key to create. Can be `exported`,`internal` or `kms`.
475
475
  """
@@ -554,7 +554,7 @@ class SecretBackendKey(pulumi.CustomResource):
554
554
  """
555
555
  The namespace to provision the resource in.
556
556
  The value should not contain leading or trailing forward slashes.
557
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
557
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
558
558
  *Available only for Vault Enterprise*.
559
559
  """
560
560
  return pulumi.get(self, "namespace")
@@ -103,7 +103,7 @@ class SecretBackendRoleArgs:
103
103
  :param pulumi.Input[str] name: The name to identify this role within the backend. Must be unique within the backend.
104
104
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
105
105
  The value should not contain leading or trailing forward slashes.
106
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
106
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
107
107
  *Available only for Vault Enterprise*.
108
108
  :param pulumi.Input[bool] no_store: Flag to not store certificates in the storage backend
109
109
  :param pulumi.Input[str] not_before_duration: Specifies the duration by which to backdate the NotBefore property.
@@ -596,7 +596,7 @@ class SecretBackendRoleArgs:
596
596
  """
597
597
  The namespace to provision the resource in.
598
598
  The value should not contain leading or trailing forward slashes.
599
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
599
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
600
600
  *Available only for Vault Enterprise*.
601
601
  """
602
602
  return pulumi.get(self, "namespace")
@@ -864,7 +864,7 @@ class _SecretBackendRoleState:
864
864
  :param pulumi.Input[str] name: The name to identify this role within the backend. Must be unique within the backend.
865
865
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
866
866
  The value should not contain leading or trailing forward slashes.
867
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
867
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
868
868
  *Available only for Vault Enterprise*.
869
869
  :param pulumi.Input[bool] no_store: Flag to not store certificates in the storage backend
870
870
  :param pulumi.Input[str] not_before_duration: Specifies the duration by which to backdate the NotBefore property.
@@ -1358,7 +1358,7 @@ class _SecretBackendRoleState:
1358
1358
  """
1359
1359
  The namespace to provision the resource in.
1360
1360
  The value should not contain leading or trailing forward slashes.
1361
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
1361
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
1362
1362
  *Available only for Vault Enterprise*.
1363
1363
  """
1364
1364
  return pulumi.get(self, "namespace")
@@ -1666,7 +1666,7 @@ class SecretBackendRole(pulumi.CustomResource):
1666
1666
  :param pulumi.Input[str] name: The name to identify this role within the backend. Must be unique within the backend.
1667
1667
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
1668
1668
  The value should not contain leading or trailing forward slashes.
1669
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
1669
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
1670
1670
  *Available only for Vault Enterprise*.
1671
1671
  :param pulumi.Input[bool] no_store: Flag to not store certificates in the storage backend
1672
1672
  :param pulumi.Input[str] not_before_duration: Specifies the duration by which to backdate the NotBefore property.
@@ -1946,7 +1946,7 @@ class SecretBackendRole(pulumi.CustomResource):
1946
1946
  :param pulumi.Input[str] name: The name to identify this role within the backend. Must be unique within the backend.
1947
1947
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
1948
1948
  The value should not contain leading or trailing forward slashes.
1949
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
1949
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
1950
1950
  *Available only for Vault Enterprise*.
1951
1951
  :param pulumi.Input[bool] no_store: Flag to not store certificates in the storage backend
1952
1952
  :param pulumi.Input[str] not_before_duration: Specifies the duration by which to backdate the NotBefore property.
@@ -2275,7 +2275,7 @@ class SecretBackendRole(pulumi.CustomResource):
2275
2275
  """
2276
2276
  The namespace to provision the resource in.
2277
2277
  The value should not contain leading or trailing forward slashes.
2278
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
2278
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
2279
2279
  *Available only for Vault Enterprise*.
2280
2280
  """
2281
2281
  return pulumi.get(self, "namespace")