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
@@ -30,7 +30,7 @@ class SecretBackendRoleArgs:
30
30
  Must be unique within the backend.
31
31
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
32
32
  The value should not contain leading or trailing forward slashes.
33
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
33
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
34
34
  *Available only for Vault Enterprise*.
35
35
  :param pulumi.Input[str] tags: Specifies a comma-separated RabbitMQ management tags.
36
36
  :param pulumi.Input[Sequence[pulumi.Input['SecretBackendRoleVhostTopicArgs']]] vhost_topics: Specifies a map of virtual hosts and exchanges to topic permissions. This option requires RabbitMQ 3.7.0 or later.
@@ -80,7 +80,7 @@ class SecretBackendRoleArgs:
80
80
  """
81
81
  The namespace to provision the resource in.
82
82
  The value should not contain leading or trailing forward slashes.
83
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
83
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
84
84
  *Available only for Vault Enterprise*.
85
85
  """
86
86
  return pulumi.get(self, "namespace")
@@ -143,7 +143,7 @@ class _SecretBackendRoleState:
143
143
  Must be unique within the backend.
144
144
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
145
145
  The value should not contain leading or trailing forward slashes.
146
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
146
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
147
147
  *Available only for Vault Enterprise*.
148
148
  :param pulumi.Input[str] tags: Specifies a comma-separated RabbitMQ management tags.
149
149
  :param pulumi.Input[Sequence[pulumi.Input['SecretBackendRoleVhostTopicArgs']]] vhost_topics: Specifies a map of virtual hosts and exchanges to topic permissions. This option requires RabbitMQ 3.7.0 or later.
@@ -194,7 +194,7 @@ class _SecretBackendRoleState:
194
194
  """
195
195
  The namespace to provision the resource in.
196
196
  The value should not contain leading or trailing forward slashes.
197
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
197
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
198
198
  *Available only for Vault Enterprise*.
199
199
  """
200
200
  return pulumi.get(self, "namespace")
@@ -300,7 +300,7 @@ class SecretBackendRole(pulumi.CustomResource):
300
300
  Must be unique within the backend.
301
301
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
302
302
  The value should not contain leading or trailing forward slashes.
303
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
303
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
304
304
  *Available only for Vault Enterprise*.
305
305
  :param pulumi.Input[str] tags: Specifies a comma-separated RabbitMQ management tags.
306
306
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['SecretBackendRoleVhostTopicArgs']]]] vhost_topics: Specifies a map of virtual hosts and exchanges to topic permissions. This option requires RabbitMQ 3.7.0 or later.
@@ -419,7 +419,7 @@ class SecretBackendRole(pulumi.CustomResource):
419
419
  Must be unique within the backend.
420
420
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
421
421
  The value should not contain leading or trailing forward slashes.
422
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
422
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
423
423
  *Available only for Vault Enterprise*.
424
424
  :param pulumi.Input[str] tags: Specifies a comma-separated RabbitMQ management tags.
425
425
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['SecretBackendRoleVhostTopicArgs']]]] vhost_topics: Specifies a map of virtual hosts and exchanges to topic permissions. This option requires RabbitMQ 3.7.0 or later.
@@ -461,7 +461,7 @@ class SecretBackendRole(pulumi.CustomResource):
461
461
  """
462
462
  The namespace to provision the resource in.
463
463
  The value should not contain leading or trailing forward slashes.
464
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
464
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
465
465
  *Available only for Vault Enterprise*.
466
466
  """
467
467
  return pulumi.get(self, "namespace")
@@ -39,7 +39,7 @@ class RaftAutopilotArgs:
39
39
  voting nodes.
40
40
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
41
41
  The value should not contain leading or trailing forward slashes.
42
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
42
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
43
43
  *Available only for Vault Enterprise*.
44
44
  :param pulumi.Input[str] server_stabilization_time: Minimum amount of time a server must be
45
45
  stable in the 'healthy' state before being added to the cluster.
@@ -146,7 +146,7 @@ class RaftAutopilotArgs:
146
146
  """
147
147
  The namespace to provision the resource in.
148
148
  The value should not contain leading or trailing forward slashes.
149
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
149
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
150
150
  *Available only for Vault Enterprise*.
151
151
  """
152
152
  return pulumi.get(self, "namespace")
@@ -197,7 +197,7 @@ class _RaftAutopilotState:
197
197
  voting nodes.
198
198
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
199
199
  The value should not contain leading or trailing forward slashes.
200
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
200
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
201
201
  *Available only for Vault Enterprise*.
202
202
  :param pulumi.Input[str] server_stabilization_time: Minimum amount of time a server must be
203
203
  stable in the 'healthy' state before being added to the cluster.
@@ -304,7 +304,7 @@ class _RaftAutopilotState:
304
304
  """
305
305
  The namespace to provision the resource in.
306
306
  The value should not contain leading or trailing forward slashes.
307
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
307
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
308
308
  *Available only for Vault Enterprise*.
309
309
  """
310
310
  return pulumi.get(self, "namespace")
@@ -389,7 +389,7 @@ class RaftAutopilot(pulumi.CustomResource):
389
389
  voting nodes.
390
390
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
391
391
  The value should not contain leading or trailing forward slashes.
392
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
392
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
393
393
  *Available only for Vault Enterprise*.
394
394
  :param pulumi.Input[str] server_stabilization_time: Minimum amount of time a server must be
395
395
  stable in the 'healthy' state before being added to the cluster.
@@ -511,7 +511,7 @@ class RaftAutopilot(pulumi.CustomResource):
511
511
  voting nodes.
512
512
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
513
513
  The value should not contain leading or trailing forward slashes.
514
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
514
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
515
515
  *Available only for Vault Enterprise*.
516
516
  :param pulumi.Input[str] server_stabilization_time: Minimum amount of time a server must be
517
517
  stable in the 'healthy' state before being added to the cluster.
@@ -591,7 +591,7 @@ class RaftAutopilot(pulumi.CustomResource):
591
591
  """
592
592
  The namespace to provision the resource in.
593
593
  The value should not contain leading or trailing forward slashes.
594
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
594
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
595
595
  *Available only for Vault Enterprise*.
596
596
  """
597
597
  return pulumi.get(self, "namespace")
@@ -106,7 +106,7 @@ class RaftSnapshotAgentConfigArgs:
106
106
  :param pulumi.Input[str] name: `<required>` – Name of the configuration to modify.
107
107
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
108
108
  The value should not contain leading or trailing forward slashes.
109
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
109
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
110
110
  *Available only for Vault Enterprise*.
111
111
  :param pulumi.Input[int] retain: How many snapshots are to be kept; when writing a
112
112
  snapshot, if there are more snapshots already stored than this number, the
@@ -518,7 +518,7 @@ class RaftSnapshotAgentConfigArgs:
518
518
  """
519
519
  The namespace to provision the resource in.
520
520
  The value should not contain leading or trailing forward slashes.
521
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
521
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
522
522
  *Available only for Vault Enterprise*.
523
523
  """
524
524
  return pulumi.get(self, "namespace")
@@ -630,7 +630,7 @@ class _RaftSnapshotAgentConfigState:
630
630
  :param pulumi.Input[str] name: `<required>` – Name of the configuration to modify.
631
631
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
632
632
  The value should not contain leading or trailing forward slashes.
633
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
633
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
634
634
  *Available only for Vault Enterprise*.
635
635
  :param pulumi.Input[str] path_prefix: `<required>` - For `storage_type = "local"`, the directory to
636
636
  write the snapshots in. For cloud storage types, the bucket prefix to use.
@@ -1023,7 +1023,7 @@ class _RaftSnapshotAgentConfigState:
1023
1023
  """
1024
1024
  The namespace to provision the resource in.
1025
1025
  The value should not contain leading or trailing forward slashes.
1026
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
1026
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
1027
1027
  *Available only for Vault Enterprise*.
1028
1028
  """
1029
1029
  return pulumi.get(self, "namespace")
@@ -1238,7 +1238,7 @@ class RaftSnapshotAgentConfig(pulumi.CustomResource):
1238
1238
  :param pulumi.Input[str] name: `<required>` – Name of the configuration to modify.
1239
1239
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
1240
1240
  The value should not contain leading or trailing forward slashes.
1241
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
1241
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
1242
1242
  *Available only for Vault Enterprise*.
1243
1243
  :param pulumi.Input[str] path_prefix: `<required>` - For `storage_type = "local"`, the directory to
1244
1244
  write the snapshots in. For cloud storage types, the bucket prefix to use.
@@ -1514,7 +1514,7 @@ class RaftSnapshotAgentConfig(pulumi.CustomResource):
1514
1514
  :param pulumi.Input[str] name: `<required>` – Name of the configuration to modify.
1515
1515
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
1516
1516
  The value should not contain leading or trailing forward slashes.
1517
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
1517
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
1518
1518
  *Available only for Vault Enterprise*.
1519
1519
  :param pulumi.Input[str] path_prefix: `<required>` - For `storage_type = "local"`, the directory to
1520
1520
  write the snapshots in. For cloud storage types, the bucket prefix to use.
@@ -1788,7 +1788,7 @@ class RaftSnapshotAgentConfig(pulumi.CustomResource):
1788
1788
  """
1789
1789
  The namespace to provision the resource in.
1790
1790
  The value should not contain leading or trailing forward slashes.
1791
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
1791
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
1792
1792
  *Available only for Vault Enterprise*.
1793
1793
  """
1794
1794
  return pulumi.get(self, "namespace")
@@ -25,7 +25,7 @@ class RgpPolicyArgs:
25
25
  :param pulumi.Input[str] name: The name of the policy
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__, "enforcement_level", enforcement_level)
@@ -77,7 +77,7 @@ class RgpPolicyArgs:
77
77
  """
78
78
  The namespace to provision the resource in.
79
79
  The value should not contain leading or trailing forward slashes.
80
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
80
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
81
81
  *Available only for Vault Enterprise*.
82
82
  """
83
83
  return pulumi.get(self, "namespace")
@@ -100,7 +100,7 @@ class _RgpPolicyState:
100
100
  :param pulumi.Input[str] name: The name of the policy
101
101
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
102
102
  The value should not contain leading or trailing forward slashes.
103
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
103
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
104
104
  *Available only for Vault Enterprise*.
105
105
  :param pulumi.Input[str] policy: String containing a Sentinel policy
106
106
  """
@@ -143,7 +143,7 @@ class _RgpPolicyState:
143
143
  """
144
144
  The namespace to provision the resource in.
145
145
  The value should not contain leading or trailing forward slashes.
146
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
146
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
147
147
  *Available only for Vault Enterprise*.
148
148
  """
149
149
  return pulumi.get(self, "namespace")
@@ -203,7 +203,7 @@ class RgpPolicy(pulumi.CustomResource):
203
203
  :param pulumi.Input[str] name: The name of the policy
204
204
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
205
205
  The value should not contain leading or trailing forward slashes.
206
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
206
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
207
207
  *Available only for Vault Enterprise*.
208
208
  :param pulumi.Input[str] policy: String containing a Sentinel policy
209
209
  """
@@ -296,7 +296,7 @@ class RgpPolicy(pulumi.CustomResource):
296
296
  :param pulumi.Input[str] name: The name of the policy
297
297
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
298
298
  The value should not contain leading or trailing forward slashes.
299
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
299
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
300
300
  *Available only for Vault Enterprise*.
301
301
  :param pulumi.Input[str] policy: String containing a Sentinel policy
302
302
  """
@@ -332,7 +332,7 @@ class RgpPolicy(pulumi.CustomResource):
332
332
  """
333
333
  The namespace to provision the resource in.
334
334
  The value should not contain leading or trailing forward slashes.
335
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
335
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
336
336
  *Available only for Vault Enterprise*.
337
337
  """
338
338
  return pulumi.get(self, "namespace")
@@ -42,7 +42,7 @@ class AuthBackendArgs:
42
42
  `idp_metadata_url`.
43
43
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
44
44
  The value should not contain leading or trailing forward slashes.
45
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
45
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
46
46
  *Available only for Vault Enterprise*.
47
47
  :param pulumi.Input[str] path: Path where the auth backend will be mounted. Defaults to `auth/saml`
48
48
  if not specified.
@@ -178,7 +178,7 @@ class AuthBackendArgs:
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")
@@ -246,7 +246,7 @@ class _AuthBackendState:
246
246
  `idp_metadata_url`.
247
247
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
248
248
  The value should not contain leading or trailing forward slashes.
249
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
249
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
250
250
  *Available only for Vault Enterprise*.
251
251
  :param pulumi.Input[str] path: Path where the auth backend will be mounted. Defaults to `auth/saml`
252
252
  if not specified.
@@ -384,7 +384,7 @@ class _AuthBackendState:
384
384
  """
385
385
  The namespace to provision the resource in.
386
386
  The value should not contain leading or trailing forward slashes.
387
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
387
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
388
388
  *Available only for Vault Enterprise*.
389
389
  """
390
390
  return pulumi.get(self, "namespace")
@@ -484,7 +484,7 @@ class AuthBackend(pulumi.CustomResource):
484
484
  `idp_metadata_url`.
485
485
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
486
486
  The value should not contain leading or trailing forward slashes.
487
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
487
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
488
488
  *Available only for Vault Enterprise*.
489
489
  :param pulumi.Input[str] path: Path where the auth backend will be mounted. Defaults to `auth/saml`
490
490
  if not specified.
@@ -620,7 +620,7 @@ class AuthBackend(pulumi.CustomResource):
620
620
  `idp_metadata_url`.
621
621
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
622
622
  The value should not contain leading or trailing forward slashes.
623
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
623
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
624
624
  *Available only for Vault Enterprise*.
625
625
  :param pulumi.Input[str] path: Path where the auth backend will be mounted. Defaults to `auth/saml`
626
626
  if not specified.
@@ -720,7 +720,7 @@ class AuthBackend(pulumi.CustomResource):
720
720
  """
721
721
  The namespace to provision the resource in.
722
722
  The value should not contain leading or trailing forward slashes.
723
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
723
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
724
724
  *Available only for Vault Enterprise*.
725
725
  """
726
726
  return pulumi.get(self, "namespace")
@@ -45,7 +45,7 @@ class AuthBackendRoleArgs:
45
45
  :param pulumi.Input[str] name: Unique name of the role.
46
46
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
47
47
  The value should not contain leading or trailing forward slashes.
48
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
48
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
49
49
  *Available only for Vault Enterprise*.
50
50
  :param pulumi.Input[Sequence[pulumi.Input[str]]] token_bound_cidrs: List of CIDR blocks; if set, specifies blocks of IP
51
51
  addresses which can authenticate successfully, and ties the resulting token to these blocks
@@ -200,7 +200,7 @@ class AuthBackendRoleArgs:
200
200
  """
201
201
  The namespace to provision the resource in.
202
202
  The value should not contain leading or trailing forward slashes.
203
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
203
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
204
204
  *Available only for Vault Enterprise*.
205
205
  """
206
206
  return pulumi.get(self, "namespace")
@@ -367,7 +367,7 @@ class _AuthBackendRoleState:
367
367
  :param pulumi.Input[str] name: Unique name of the role.
368
368
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
369
369
  The value should not contain leading or trailing forward slashes.
370
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
370
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
371
371
  *Available only for Vault Enterprise*.
372
372
  :param pulumi.Input[str] path: Path where the auth backend is mounted.
373
373
  :param pulumi.Input[Sequence[pulumi.Input[str]]] token_bound_cidrs: List of CIDR blocks; if set, specifies blocks of IP
@@ -512,7 +512,7 @@ class _AuthBackendRoleState:
512
512
  """
513
513
  The namespace to provision the resource in.
514
514
  The value should not contain leading or trailing forward slashes.
515
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
515
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
516
516
  *Available only for Vault Enterprise*.
517
517
  """
518
518
  return pulumi.get(self, "namespace")
@@ -732,7 +732,7 @@ class AuthBackendRole(pulumi.CustomResource):
732
732
  :param pulumi.Input[str] name: Unique name of the role.
733
733
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
734
734
  The value should not contain leading or trailing forward slashes.
735
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
735
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
736
736
  *Available only for Vault Enterprise*.
737
737
  :param pulumi.Input[str] path: Path where the auth backend is mounted.
738
738
  :param pulumi.Input[Sequence[pulumi.Input[str]]] token_bound_cidrs: List of CIDR blocks; if set, specifies blocks of IP
@@ -910,7 +910,7 @@ class AuthBackendRole(pulumi.CustomResource):
910
910
  :param pulumi.Input[str] name: Unique name of the role.
911
911
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
912
912
  The value should not contain leading or trailing forward slashes.
913
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
913
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
914
914
  *Available only for Vault Enterprise*.
915
915
  :param pulumi.Input[str] path: Path where the auth backend is mounted.
916
916
  :param pulumi.Input[Sequence[pulumi.Input[str]]] token_bound_cidrs: List of CIDR blocks; if set, specifies blocks of IP
@@ -1019,7 +1019,7 @@ class AuthBackendRole(pulumi.CustomResource):
1019
1019
  """
1020
1020
  The namespace to provision the resource in.
1021
1021
  The value should not contain leading or trailing forward slashes.
1022
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
1022
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
1023
1023
  *Available only for Vault Enterprise*.
1024
1024
  """
1025
1025
  return pulumi.get(self, "namespace")
@@ -11,4 +11,5 @@ from .sync_azure_destination import *
11
11
  from .sync_config import *
12
12
  from .sync_gcp_destination import *
13
13
  from .sync_gh_destination import *
14
+ from .sync_github_apps import *
14
15
  from .sync_vercel_destination import *
@@ -27,7 +27,7 @@ class SyncAssociationArgs:
27
27
  :param pulumi.Input[str] name: Specifies the name of the destination.
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
  """
32
32
  pulumi.set(__self__, "mount", mount)
33
33
  pulumi.set(__self__, "secret_name", secret_name)
@@ -91,7 +91,7 @@ class SyncAssociationArgs:
91
91
  """
92
92
  The namespace to provision the resource in.
93
93
  The value should not contain leading or trailing forward slashes.
94
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
94
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
95
95
  """
96
96
  return pulumi.get(self, "namespace")
97
97
 
@@ -116,7 +116,7 @@ class _SyncAssociationState:
116
116
  :param pulumi.Input[str] name: Specifies the name of the destination.
117
117
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
118
118
  The value should not contain leading or trailing forward slashes.
119
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
119
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
120
120
  :param pulumi.Input[str] secret_name: Specifies the name of the secret to synchronize.
121
121
  :param pulumi.Input[str] sync_status: Specifies the status of the association (for eg. `SYNCED`).
122
122
  :param pulumi.Input[str] type: Specifies the destination type.
@@ -167,7 +167,7 @@ class _SyncAssociationState:
167
167
  """
168
168
  The namespace to provision the resource in.
169
169
  The value should not contain leading or trailing forward slashes.
170
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
170
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
171
171
  """
172
172
  return pulumi.get(self, "namespace")
173
173
 
@@ -275,7 +275,7 @@ class SyncAssociation(pulumi.CustomResource):
275
275
  :param pulumi.Input[str] name: Specifies the name of the destination.
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
  :param pulumi.Input[str] secret_name: Specifies the name of the secret to synchronize.
280
280
  :param pulumi.Input[str] type: Specifies the destination type.
281
281
  """
@@ -389,7 +389,7 @@ class SyncAssociation(pulumi.CustomResource):
389
389
  :param pulumi.Input[str] name: Specifies the name of the destination.
390
390
  :param pulumi.Input[str] namespace: The namespace to provision the resource in.
391
391
  The value should not contain leading or trailing forward slashes.
392
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
392
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
393
393
  :param pulumi.Input[str] secret_name: Specifies the name of the secret to synchronize.
394
394
  :param pulumi.Input[str] sync_status: Specifies the status of the association (for eg. `SYNCED`).
395
395
  :param pulumi.Input[str] type: Specifies the destination type.
@@ -430,7 +430,7 @@ class SyncAssociation(pulumi.CustomResource):
430
430
  """
431
431
  The namespace to provision the resource in.
432
432
  The value should not contain leading or trailing forward slashes.
433
- The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault#namespace).
433
+ The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
434
434
  """
435
435
  return pulumi.get(self, "namespace")
436
436