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
@@ -41,7 +41,7 @@ class AuthBackendLoginArgs:
41
41
  authenticate with. Can be retrieved from the EC2 metadata server.
42
42
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
43
43
  The value should not contain leading or trailing forward slashes.
44
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
44
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
45
45
  *Available only for Vault Enterprise*.
46
46
  :param pulumi.Input[str] nonce: The unique nonce to be used for login requests. Can be
47
47
  set to a user-specified value, or will contain the server-generated value
@@ -163,7 +163,7 @@ class AuthBackendLoginArgs:
163
163
  """
164
164
  The namespace to provision the resource in.
165
165
  The value should not contain leading or trailing forward slashes.
166
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
166
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
167
167
  *Available only for Vault Enterprise*.
168
168
  """
169
169
  return pulumi.get(self, "namespace")
@@ -275,7 +275,7 @@ class _AuthBackendLoginState:
275
275
  authentication used to generate this token.
276
276
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
277
277
  The value should not contain leading or trailing forward slashes.
278
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
278
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
279
279
  *Available only for Vault Enterprise*.
280
280
  :param pulumi.Input[str] nonce: The unique nonce to be used for login requests. Can be
281
281
  set to a user-specified value, or will contain the server-generated value
@@ -489,7 +489,7 @@ class _AuthBackendLoginState:
489
489
  """
490
490
  The namespace to provision the resource in.
491
491
  The value should not contain leading or trailing forward slashes.
492
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
492
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
493
493
  *Available only for Vault Enterprise*.
494
494
  """
495
495
  return pulumi.get(self, "namespace")
@@ -618,7 +618,7 @@ class AuthBackendLogin(pulumi.CustomResource):
618
618
  authenticate with. Can be retrieved from the EC2 metadata server.
619
619
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
620
620
  The value should not contain leading or trailing forward slashes.
621
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
621
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
622
622
  *Available only for Vault Enterprise*.
623
623
  :param pulumi.Input[str] nonce: The unique nonce to be used for login requests. Can be
624
624
  set to a user-specified value, or will contain the server-generated value
@@ -759,7 +759,7 @@ class AuthBackendLogin(pulumi.CustomResource):
759
759
  authentication used to generate this token.
760
760
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
761
761
  The value should not contain leading or trailing forward slashes.
762
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
762
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
763
763
  *Available only for Vault Enterprise*.
764
764
  :param pulumi.Input[str] nonce: The unique nonce to be used for login requests. Can be
765
765
  set to a user-specified value, or will contain the server-generated value
@@ -911,7 +911,7 @@ class AuthBackendLogin(pulumi.CustomResource):
911
911
  """
912
912
  The namespace to provision the resource in.
913
913
  The value should not contain leading or trailing forward slashes.
914
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
914
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
915
915
  *Available only for Vault Enterprise*.
916
916
  """
917
917
  return pulumi.get(self, "namespace")
@@ -100,7 +100,7 @@ class AuthBackendRoleArgs:
100
100
  This only applies when `auth_type` is set to `iam`.
101
101
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
102
102
  The value should not contain leading or trailing forward slashes.
103
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
103
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
104
104
  *Available only for Vault Enterprise*.
105
105
  :param pulumi.Input[bool] resolve_aws_unique_ids: Only valid when
106
106
  `auth_type` is `iam`. If set to `true`, the `bound_iam_principal_arns` are
@@ -436,7 +436,7 @@ class AuthBackendRoleArgs:
436
436
  """
437
437
  The namespace to provision the resource in.
438
438
  The value should not contain leading or trailing forward slashes.
439
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
439
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
440
440
  *Available only for Vault Enterprise*.
441
441
  """
442
442
  return pulumi.get(self, "namespace")
@@ -697,7 +697,7 @@ class _AuthBackendRoleState:
697
697
  This only applies when `auth_type` is set to `iam`.
698
698
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
699
699
  The value should not contain leading or trailing forward slashes.
700
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
700
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
701
701
  *Available only for Vault Enterprise*.
702
702
  :param pulumi.Input[bool] resolve_aws_unique_ids: Only valid when
703
703
  `auth_type` is `iam`. If set to `true`, the `bound_iam_principal_arns` are
@@ -1026,7 +1026,7 @@ class _AuthBackendRoleState:
1026
1026
  """
1027
1027
  The namespace to provision the resource in.
1028
1028
  The value should not contain leading or trailing forward slashes.
1029
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
1029
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
1030
1030
  *Available only for Vault Enterprise*.
1031
1031
  """
1032
1032
  return pulumi.get(self, "namespace")
@@ -1358,7 +1358,7 @@ class AuthBackendRole(pulumi.CustomResource):
1358
1358
  This only applies when `auth_type` is set to `iam`.
1359
1359
  :param pulumi.Input[str] namespace: 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
  :param pulumi.Input[bool] resolve_aws_unique_ids: Only valid when
1364
1364
  `auth_type` is `iam`. If set to `true`, the `bound_iam_principal_arns` are
@@ -1638,7 +1638,7 @@ class AuthBackendRole(pulumi.CustomResource):
1638
1638
  This only applies when `auth_type` is set to `iam`.
1639
1639
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
1640
1640
  The value should not contain leading or trailing forward slashes.
1641
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
1641
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
1642
1642
  *Available only for Vault Enterprise*.
1643
1643
  :param pulumi.Input[bool] resolve_aws_unique_ids: Only valid when
1644
1644
  `auth_type` is `iam`. If set to `true`, the `bound_iam_principal_arns` are
@@ -1883,7 +1883,7 @@ class AuthBackendRole(pulumi.CustomResource):
1883
1883
  """
1884
1884
  The namespace to provision the resource in.
1885
1885
  The value should not contain leading or trailing forward slashes.
1886
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
1886
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
1887
1887
  *Available only for Vault Enterprise*.
1888
1888
  """
1889
1889
  return pulumi.get(self, "namespace")
@@ -34,7 +34,7 @@ class AuthBackendRoleTagArgs:
34
34
  :param pulumi.Input[str] max_ttl: The maximum TTL of the tokens issued using this role.
35
35
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
36
36
  The value should not contain leading or trailing forward slashes.
37
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
37
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
38
38
  *Available only for Vault Enterprise*.
39
39
  :param pulumi.Input[Sequence[pulumi.Input[str]]] policies: The policies to be associated with the tag. Must be a subset of the policies associated with the role.
40
40
  """
@@ -134,7 +134,7 @@ class AuthBackendRoleTagArgs:
134
134
  """
135
135
  The namespace to provision the resource in.
136
136
  The value should not contain leading or trailing forward slashes.
137
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
137
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
138
138
  *Available only for Vault Enterprise*.
139
139
  """
140
140
  return pulumi.get(self, "namespace")
@@ -179,7 +179,7 @@ class _AuthBackendRoleTagState:
179
179
  :param pulumi.Input[str] max_ttl: The maximum TTL of the tokens issued using this role.
180
180
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
181
181
  The value should not contain leading or trailing forward slashes.
182
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
182
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
183
183
  *Available only for Vault Enterprise*.
184
184
  :param pulumi.Input[Sequence[pulumi.Input[str]]] policies: The policies to be associated with the tag. Must be a subset of the policies associated with the role.
185
185
  :param pulumi.Input[str] role: The name of the AWS auth backend role to read
@@ -275,7 +275,7 @@ class _AuthBackendRoleTagState:
275
275
  """
276
276
  The namespace to provision the resource in.
277
277
  The value should not contain leading or trailing forward slashes.
278
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
278
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
279
279
  *Available only for Vault Enterprise*.
280
280
  """
281
281
  return pulumi.get(self, "namespace")
@@ -361,7 +361,7 @@ class AuthBackendRoleTag(pulumi.CustomResource):
361
361
  :param pulumi.Input[str] max_ttl: The maximum TTL of the tokens issued using this role.
362
362
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
363
363
  The value should not contain leading or trailing forward slashes.
364
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
364
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
365
365
  *Available only for Vault Enterprise*.
366
366
  :param pulumi.Input[Sequence[pulumi.Input[str]]] policies: The policies to be associated with the tag. Must be a subset of the policies associated with the role.
367
367
  :param pulumi.Input[str] role: The name of the AWS auth backend role to read
@@ -455,7 +455,7 @@ class AuthBackendRoleTag(pulumi.CustomResource):
455
455
  :param pulumi.Input[str] max_ttl: The maximum TTL of the tokens issued using this role.
456
456
  :param pulumi.Input[str] namespace: 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
  :param pulumi.Input[Sequence[pulumi.Input[str]]] policies: The policies to be associated with the tag. Must be a subset of the policies associated with the role.
461
461
  :param pulumi.Input[str] role: The name of the AWS auth backend role to read
@@ -526,7 +526,7 @@ class AuthBackendRoleTag(pulumi.CustomResource):
526
526
  """
527
527
  The namespace to provision the resource in.
528
528
  The value should not contain leading or trailing forward slashes.
529
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
529
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
530
530
  *Available only for Vault Enterprise*.
531
531
  """
532
532
  return pulumi.get(self, "namespace")
@@ -26,7 +26,7 @@ class AuthBackendRoletagBlacklistArgs:
26
26
  tidying of the roletag blacklist entries. Defaults to false.
27
27
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
28
28
  The value should not contain leading or trailing forward slashes.
29
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
29
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
30
30
  *Available only for Vault Enterprise*.
31
31
  :param pulumi.Input[int] safety_buffer: The amount of extra time that must have passed
32
32
  beyond the roletag expiration, before it is removed from the backend storage.
@@ -72,7 +72,7 @@ class AuthBackendRoletagBlacklistArgs:
72
72
  """
73
73
  The namespace to provision the resource in.
74
74
  The value should not contain leading or trailing forward slashes.
75
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
75
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
76
76
  *Available only for Vault Enterprise*.
77
77
  """
78
78
  return pulumi.get(self, "namespace")
@@ -111,7 +111,7 @@ class _AuthBackendRoletagBlacklistState:
111
111
  tidying of the roletag blacklist entries. Defaults to false.
112
112
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
113
113
  The value should not contain leading or trailing forward slashes.
114
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
114
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
115
115
  *Available only for Vault Enterprise*.
116
116
  :param pulumi.Input[int] safety_buffer: The amount of extra time that must have passed
117
117
  beyond the roletag expiration, before it is removed from the backend storage.
@@ -158,7 +158,7 @@ class _AuthBackendRoletagBlacklistState:
158
158
  """
159
159
  The namespace to provision the resource in.
160
160
  The value should not contain leading or trailing forward slashes.
161
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
161
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
162
162
  *Available only for Vault Enterprise*.
163
163
  """
164
164
  return pulumi.get(self, "namespace")
@@ -217,7 +217,7 @@ class AuthBackendRoletagBlacklist(pulumi.CustomResource):
217
217
  tidying of the roletag blacklist entries. Defaults to false.
218
218
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
219
219
  The value should not contain leading or trailing forward slashes.
220
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
220
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
221
221
  *Available only for Vault Enterprise*.
222
222
  :param pulumi.Input[int] safety_buffer: The amount of extra time that must have passed
223
223
  beyond the roletag expiration, before it is removed from the backend storage.
@@ -307,7 +307,7 @@ class AuthBackendRoletagBlacklist(pulumi.CustomResource):
307
307
  tidying of the roletag blacklist entries. Defaults to false.
308
308
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
309
309
  The value should not contain leading or trailing forward slashes.
310
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
310
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
311
311
  *Available only for Vault Enterprise*.
312
312
  :param pulumi.Input[int] safety_buffer: The amount of extra time that must have passed
313
313
  beyond the roletag expiration, before it is removed from the backend storage.
@@ -347,7 +347,7 @@ class AuthBackendRoletagBlacklist(pulumi.CustomResource):
347
347
  """
348
348
  The namespace to provision the resource in.
349
349
  The value should not contain leading or trailing forward slashes.
350
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
350
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
351
351
  *Available only for Vault Enterprise*.
352
352
  """
353
353
  return pulumi.get(self, "namespace")
@@ -27,7 +27,7 @@ class AuthBackendStsRoleArgs:
27
27
  mounted at. Defaults to `aws`.
28
28
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
29
29
  The value should not contain leading or trailing forward slashes.
30
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
30
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
31
31
  *Available only for Vault Enterprise*.
32
32
  """
33
33
  pulumi.set(__self__, "account_id", account_id)
@@ -81,7 +81,7 @@ class AuthBackendStsRoleArgs:
81
81
  """
82
82
  The namespace to provision the resource in.
83
83
  The value should not contain leading or trailing forward slashes.
84
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
84
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
85
85
  *Available only for Vault Enterprise*.
86
86
  """
87
87
  return pulumi.get(self, "namespace")
@@ -105,7 +105,7 @@ class _AuthBackendStsRoleState:
105
105
  mounted at. Defaults to `aws`.
106
106
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
107
107
  The value should not contain leading or trailing forward slashes.
108
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
108
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
109
109
  *Available only for Vault Enterprise*.
110
110
  :param pulumi.Input[str] sts_role: The STS role to assume when verifying requests made
111
111
  by EC2 instances in the account specified by `account_id`.
@@ -150,7 +150,7 @@ class _AuthBackendStsRoleState:
150
150
  """
151
151
  The namespace to provision the resource in.
152
152
  The value should not contain leading or trailing forward slashes.
153
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
153
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
154
154
  *Available only for Vault Enterprise*.
155
155
  """
156
156
  return pulumi.get(self, "namespace")
@@ -214,7 +214,7 @@ class AuthBackendStsRole(pulumi.CustomResource):
214
214
  mounted at. Defaults to `aws`.
215
215
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
216
216
  The value should not contain leading or trailing forward slashes.
217
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
217
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
218
218
  *Available only for Vault Enterprise*.
219
219
  :param pulumi.Input[str] sts_role: The STS role to assume when verifying requests made
220
220
  by EC2 instances in the account specified by `account_id`.
@@ -311,7 +311,7 @@ class AuthBackendStsRole(pulumi.CustomResource):
311
311
  mounted at. Defaults to `aws`.
312
312
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
313
313
  The value should not contain leading or trailing forward slashes.
314
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
314
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
315
315
  *Available only for Vault Enterprise*.
316
316
  :param pulumi.Input[str] sts_role: The STS role to assume when verifying requests made
317
317
  by EC2 instances in the account specified by `account_id`.
@@ -349,7 +349,7 @@ class AuthBackendStsRole(pulumi.CustomResource):
349
349
  """
350
350
  The namespace to provision the resource in.
351
351
  The value should not contain leading or trailing forward slashes.
352
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
352
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
353
353
  *Available only for Vault Enterprise*.
354
354
  """
355
355
  return pulumi.get(self, "namespace")
@@ -203,7 +203,7 @@ def get_access_credentials(backend: Optional[str] = None,
203
203
  read credentials from, with no leading or trailing `/`s.
204
204
  :param str namespace: The namespace of the target resource.
205
205
  The value should not contain leading or trailing forward slashes.
206
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
206
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
207
207
  *Available only for Vault Enterprise*.
208
208
  :param str region: The region the read credentials belong to.
209
209
  :param str role: The name of the AWS secret backend role to read
@@ -265,7 +265,7 @@ def get_access_credentials_output(backend: Optional[pulumi.Input[str]] = None,
265
265
  read credentials from, with no leading or trailing `/`s.
266
266
  :param str namespace: The namespace of the target resource.
267
267
  The value should not contain leading or trailing forward slashes.
268
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
268
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
269
269
  *Available only for Vault Enterprise*.
270
270
  :param str region: The region the read credentials belong to.
271
271
  :param str role: The name of the AWS secret backend role to read
@@ -49,7 +49,7 @@ class SecretBackendArgs:
49
49
  for credentials issued by this backend.
50
50
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
51
51
  The value should not contain leading or trailing forward slashes.
52
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
52
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
53
53
  *Available only for Vault Enterprise*.
54
54
  :param pulumi.Input[str] path: The unique path this backend should be mounted at. Must
55
55
  not begin or end with a `/`. Defaults to `aws`.
@@ -224,7 +224,7 @@ class SecretBackendArgs:
224
224
  """
225
225
  The namespace to provision the resource in.
226
226
  The value should not contain leading or trailing forward slashes.
227
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
227
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
228
228
  *Available only for Vault Enterprise*.
229
229
  """
230
230
  return pulumi.get(self, "namespace")
@@ -345,7 +345,7 @@ class _SecretBackendState:
345
345
  for credentials issued by this backend.
346
346
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
347
347
  The value should not contain leading or trailing forward slashes.
348
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
348
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
349
349
  *Available only for Vault Enterprise*.
350
350
  :param pulumi.Input[str] path: The unique path this backend should be mounted at. Must
351
351
  not begin or end with a `/`. Defaults to `aws`.
@@ -520,7 +520,7 @@ class _SecretBackendState:
520
520
  """
521
521
  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
  """
526
526
  return pulumi.get(self, "namespace")
@@ -653,7 +653,7 @@ class SecretBackend(pulumi.CustomResource):
653
653
  for credentials issued by this backend.
654
654
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
655
655
  The value should not contain leading or trailing forward slashes.
656
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
656
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
657
657
  *Available only for Vault Enterprise*.
658
658
  :param pulumi.Input[str] path: The unique path this backend should be mounted at. Must
659
659
  not begin or end with a `/`. Defaults to `aws`.
@@ -788,7 +788,7 @@ class SecretBackend(pulumi.CustomResource):
788
788
  for credentials issued by this backend.
789
789
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
790
790
  The value should not contain leading or trailing forward slashes.
791
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
791
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
792
792
  *Available only for Vault Enterprise*.
793
793
  :param pulumi.Input[str] path: The unique path this backend should be mounted at. Must
794
794
  not begin or end with a `/`. Defaults to `aws`.
@@ -911,7 +911,7 @@ class SecretBackend(pulumi.CustomResource):
911
911
  """
912
912
  The namespace to provision the resource in.
913
913
  The value should not contain leading or trailing forward slashes.
914
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
914
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
915
915
  *Available only for Vault Enterprise*.
916
916
  """
917
917
  return pulumi.get(self, "namespace")
@@ -51,7 +51,7 @@ class SecretBackendRoleArgs:
51
51
  Must be unique within the backend.
52
52
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
53
53
  The value should not contain leading or trailing forward slashes.
54
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
54
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
55
55
  *Available only for Vault Enterprise*.
56
56
  :param pulumi.Input[str] permissions_boundary_arn: The ARN of the AWS Permissions
57
57
  Boundary to attach to IAM users created in the role. Valid only when
@@ -191,7 +191,7 @@ class SecretBackendRoleArgs:
191
191
  """
192
192
  The namespace to provision the resource in.
193
193
  The value should not contain leading or trailing forward slashes.
194
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
194
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
195
195
  *Available only for Vault Enterprise*.
196
196
  """
197
197
  return pulumi.get(self, "namespace")
@@ -317,7 +317,7 @@ class _SecretBackendRoleState:
317
317
  Must be unique within the backend.
318
318
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
319
319
  The value should not contain leading or trailing forward slashes.
320
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
320
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
321
321
  *Available only for Vault Enterprise*.
322
322
  :param pulumi.Input[str] permissions_boundary_arn: The ARN of the AWS Permissions
323
323
  Boundary to attach to IAM users created in the role. Valid only when
@@ -459,7 +459,7 @@ class _SecretBackendRoleState:
459
459
  """
460
460
  The namespace to provision the resource in.
461
461
  The value should not contain leading or trailing forward slashes.
462
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
462
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
463
463
  *Available only for Vault Enterprise*.
464
464
  """
465
465
  return pulumi.get(self, "namespace")
@@ -624,7 +624,7 @@ class SecretBackendRole(pulumi.CustomResource):
624
624
  Must be unique within the backend.
625
625
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
626
626
  The value should not contain leading or trailing forward slashes.
627
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
627
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
628
628
  *Available only for Vault Enterprise*.
629
629
  :param pulumi.Input[str] permissions_boundary_arn: The ARN of the AWS Permissions
630
630
  Boundary to attach to IAM users created in the role. Valid only when
@@ -794,7 +794,7 @@ class SecretBackendRole(pulumi.CustomResource):
794
794
  Must be unique within the backend.
795
795
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
796
796
  The value should not contain leading or trailing forward slashes.
797
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
797
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
798
798
  *Available only for Vault Enterprise*.
799
799
  :param pulumi.Input[str] permissions_boundary_arn: The ARN of the AWS Permissions
800
800
  Boundary to attach to IAM users created in the role. Valid only when
@@ -905,7 +905,7 @@ class SecretBackendRole(pulumi.CustomResource):
905
905
  """
906
906
  The namespace to provision the resource in.
907
907
  The value should not contain leading or trailing forward slashes.
908
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
908
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
909
909
  *Available only for Vault Enterprise*.
910
910
  """
911
911
  return pulumi.get(self, "namespace")
@@ -29,7 +29,7 @@ class SecretBackendStaticRoleArgs:
29
29
  Must be unique within the backend.
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
  """
35
35
  pulumi.set(__self__, "rotation_period", rotation_period)
@@ -97,7 +97,7 @@ class SecretBackendStaticRoleArgs:
97
97
  """
98
98
  The namespace to provision the resource in.
99
99
  The value should not contain leading or trailing forward slashes.
100
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
100
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
101
101
  *Available only for Vault Enterprise*.
102
102
  """
103
103
  return pulumi.get(self, "namespace")
@@ -123,7 +123,7 @@ class _SecretBackendStaticRoleState:
123
123
  Must be unique within the backend.
124
124
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
125
125
  The value should not contain leading or trailing forward slashes.
126
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
126
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
127
127
  *Available only for Vault Enterprise*.
128
128
  :param pulumi.Input[int] rotation_period: How often Vault should rotate the password of the user entry.
129
129
  :param pulumi.Input[str] username: The username of the existing AWS IAM to manage password rotation for.
@@ -171,7 +171,7 @@ class _SecretBackendStaticRoleState:
171
171
  """
172
172
  The namespace to provision the resource in.
173
173
  The value should not contain leading or trailing forward slashes.
174
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
174
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
175
175
  *Available only for Vault Enterprise*.
176
176
  """
177
177
  return pulumi.get(self, "namespace")
@@ -251,7 +251,7 @@ class SecretBackendStaticRole(pulumi.CustomResource):
251
251
  Must be unique within the backend.
252
252
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
253
253
  The value should not contain leading or trailing forward slashes.
254
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
254
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
255
255
  *Available only for Vault Enterprise*.
256
256
  :param pulumi.Input[int] rotation_period: How often Vault should rotate the password of the user entry.
257
257
  :param pulumi.Input[str] username: The username of the existing AWS IAM to manage password rotation for.
@@ -355,7 +355,7 @@ class SecretBackendStaticRole(pulumi.CustomResource):
355
355
  Must be unique within the backend.
356
356
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
357
357
  The value should not contain leading or trailing forward slashes.
358
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
358
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
359
359
  *Available only for Vault Enterprise*.
360
360
  :param pulumi.Input[int] rotation_period: How often Vault should rotate the password of the user entry.
361
361
  :param pulumi.Input[str] username: The username of the existing AWS IAM to manage password rotation for.
@@ -395,7 +395,7 @@ class SecretBackendStaticRole(pulumi.CustomResource):
395
395
  """
396
396
  The namespace to provision the resource in.
397
397
  The value should not contain leading or trailing forward slashes.
398
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
398
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
399
399
  *Available only for Vault Enterprise*.
400
400
  """
401
401
  return pulumi.get(self, "namespace")
@@ -38,7 +38,7 @@ class AuthBackendConfigArgs:
38
38
  AzureGermanCloud. Defaults to `AzurePublicCloud`.
39
39
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
40
40
  The value should not contain leading or trailing forward slashes.
41
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
41
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
42
42
  *Available only for Vault Enterprise*.
43
43
  """
44
44
  pulumi.set(__self__, "resource", resource)
@@ -139,7 +139,7 @@ class AuthBackendConfigArgs:
139
139
  """
140
140
  The namespace to provision the resource in.
141
141
  The value should not contain leading or trailing forward slashes.
142
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
142
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
143
143
  *Available only for Vault Enterprise*.
144
144
  """
145
145
  return pulumi.get(self, "namespace")
@@ -172,7 +172,7 @@ class _AuthBackendConfigState:
172
172
  AzureGermanCloud. Defaults to `AzurePublicCloud`.
173
173
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
174
174
  The value should not contain leading or trailing forward slashes.
175
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
175
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
176
176
  *Available only for Vault Enterprise*.
177
177
  :param pulumi.Input[str] resource: The configured URL for the application registered in
178
178
  Azure Active Directory.
@@ -253,7 +253,7 @@ class _AuthBackendConfigState:
253
253
  """
254
254
  The namespace to provision the resource in.
255
255
  The value should not contain leading or trailing forward slashes.
256
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
256
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
257
257
  *Available only for Vault Enterprise*.
258
258
  """
259
259
  return pulumi.get(self, "namespace")
@@ -341,7 +341,7 @@ class AuthBackendConfig(pulumi.CustomResource):
341
341
  AzureGermanCloud. Defaults to `AzurePublicCloud`.
342
342
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
343
343
  The value should not contain leading or trailing forward slashes.
344
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
344
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
345
345
  *Available only for Vault Enterprise*.
346
346
  :param pulumi.Input[str] resource: The configured URL for the application registered in
347
347
  Azure Active Directory.
@@ -459,7 +459,7 @@ class AuthBackendConfig(pulumi.CustomResource):
459
459
  AzureGermanCloud. Defaults to `AzurePublicCloud`.
460
460
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
461
461
  The value should not contain leading or trailing forward slashes.
462
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
462
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
463
463
  *Available only for Vault Enterprise*.
464
464
  :param pulumi.Input[str] resource: The configured URL for the application registered in
465
465
  Azure Active Directory.
@@ -522,7 +522,7 @@ class AuthBackendConfig(pulumi.CustomResource):
522
522
  """
523
523
  The namespace to provision the resource in.
524
524
  The value should not contain leading or trailing forward slashes.
525
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
525
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
526
526
  *Available only for Vault Enterprise*.
527
527
  """
528
528
  return pulumi.get(self, "namespace")