pulumi-vault 6.4.0a1723454543__py3-none-any.whl → 6.4.0a1723820369__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.
- pulumi_vault/aws/auth_backend_login.py +7 -7
- pulumi_vault/config/ui_custom_message.py +14 -14
- pulumi_vault/database/_inputs.py +72 -72
- pulumi_vault/database/outputs.py +54 -54
- pulumi_vault/database/secret_backend_connection.py +14 -14
- pulumi_vault/database/secret_backend_role.py +14 -14
- pulumi_vault/database/secrets_mount.py +14 -14
- pulumi_vault/generic/get_secret.py +1 -1
- pulumi_vault/generic/secret.py +7 -7
- pulumi_vault/get_namespace.py +1 -1
- pulumi_vault/get_nomad_access_token.py +10 -4
- pulumi_vault/get_raft_autopilot_state.py +3 -3
- pulumi_vault/identity/get_entity.py +1 -1
- pulumi_vault/identity/get_group.py +2 -2
- pulumi_vault/identity/get_oidc_public_keys.py +1 -1
- pulumi_vault/identity/outputs.py +3 -3
- pulumi_vault/jwt/auth_backend_role.py +28 -28
- pulumi_vault/kubernetes/secret_backend.py +14 -14
- pulumi_vault/kv/_inputs.py +4 -4
- pulumi_vault/kv/get_secret.py +1 -1
- pulumi_vault/kv/get_secret_subkeys_v2.py +1 -1
- pulumi_vault/kv/get_secret_v2.py +2 -2
- pulumi_vault/kv/outputs.py +3 -3
- pulumi_vault/kv/secret.py +7 -7
- pulumi_vault/kv/secret_v2.py +28 -28
- pulumi_vault/ldap/secret_backend.py +14 -14
- pulumi_vault/mount.py +16 -16
- pulumi_vault/namespace.py +14 -14
- pulumi_vault/pkisecret/_inputs.py +8 -8
- pulumi_vault/pkisecret/backend_config_est.py +14 -14
- pulumi_vault/pkisecret/get_backend_config_est.py +1 -1
- pulumi_vault/pkisecret/get_backend_issuers.py +1 -1
- pulumi_vault/pkisecret/get_backend_keys.py +1 -1
- pulumi_vault/pkisecret/outputs.py +12 -12
- pulumi_vault/pulumi-plugin.json +1 -1
- pulumi_vault/saml/auth_backend_role.py +14 -14
- pulumi_vault/secrets/sync_aws_destination.py +14 -14
- pulumi_vault/secrets/sync_azure_destination.py +14 -14
- pulumi_vault/secrets/sync_gcp_destination.py +14 -14
- pulumi_vault/ssh/secret_backend_role.py +28 -28
- pulumi_vault/transform/get_decode.py +10 -10
- pulumi_vault/transform/get_encode.py +10 -10
- pulumi_vault/transform/template.py +14 -14
- pulumi_vault/transit/secret_backend_key.py +7 -7
- {pulumi_vault-6.4.0a1723454543.dist-info → pulumi_vault-6.4.0a1723820369.dist-info}/METADATA +1 -1
- {pulumi_vault-6.4.0a1723454543.dist-info → pulumi_vault-6.4.0a1723820369.dist-info}/RECORD +48 -48
- {pulumi_vault-6.4.0a1723454543.dist-info → pulumi_vault-6.4.0a1723820369.dist-info}/WHEEL +1 -1
- {pulumi_vault-6.4.0a1723454543.dist-info → pulumi_vault-6.4.0a1723820369.dist-info}/top_level.txt +0 -0
pulumi_vault/database/outputs.py
CHANGED
@@ -2496,7 +2496,7 @@ class SecretsMountCassandra(dict):
|
|
2496
2496
|
name: str,
|
2497
2497
|
allowed_roles: Optional[Sequence[str]] = None,
|
2498
2498
|
connect_timeout: Optional[int] = None,
|
2499
|
-
data: Optional[Mapping[str,
|
2499
|
+
data: Optional[Mapping[str, str]] = None,
|
2500
2500
|
hosts: Optional[Sequence[str]] = None,
|
2501
2501
|
insecure_tls: Optional[bool] = None,
|
2502
2502
|
password: Optional[str] = None,
|
@@ -2514,7 +2514,7 @@ class SecretsMountCassandra(dict):
|
|
2514
2514
|
:param Sequence[str] allowed_roles: A list of roles that are allowed to use this
|
2515
2515
|
connection.
|
2516
2516
|
:param int connect_timeout: The number of seconds to use as a connection timeout.
|
2517
|
-
:param Mapping[str,
|
2517
|
+
:param Mapping[str, str] data: A map of sensitive data to pass to the endpoint. Useful for templated connection strings.
|
2518
2518
|
|
2519
2519
|
Supported list of database secrets engines that can be configured:
|
2520
2520
|
:param Sequence[str] hosts: Cassandra hosts to connect to.
|
@@ -2590,7 +2590,7 @@ class SecretsMountCassandra(dict):
|
|
2590
2590
|
|
2591
2591
|
@property
|
2592
2592
|
@pulumi.getter
|
2593
|
-
def data(self) -> Optional[Mapping[str,
|
2593
|
+
def data(self) -> Optional[Mapping[str, str]]:
|
2594
2594
|
"""
|
2595
2595
|
A map of sensitive data to pass to the endpoint. Useful for templated connection strings.
|
2596
2596
|
|
@@ -2737,7 +2737,7 @@ class SecretsMountCouchbase(dict):
|
|
2737
2737
|
allowed_roles: Optional[Sequence[str]] = None,
|
2738
2738
|
base64_pem: Optional[str] = None,
|
2739
2739
|
bucket_name: Optional[str] = None,
|
2740
|
-
data: Optional[Mapping[str,
|
2740
|
+
data: Optional[Mapping[str, str]] = None,
|
2741
2741
|
insecure_tls: Optional[bool] = None,
|
2742
2742
|
plugin_name: Optional[str] = None,
|
2743
2743
|
root_rotation_statements: Optional[Sequence[str]] = None,
|
@@ -2753,7 +2753,7 @@ class SecretsMountCouchbase(dict):
|
|
2753
2753
|
connection.
|
2754
2754
|
:param str base64_pem: Required if `tls` is `true`. Specifies the certificate authority of the Couchbase server, as a PEM certificate that has been base64 encoded.
|
2755
2755
|
:param str bucket_name: Required for Couchbase versions prior to 6.5.0. This is only used to verify vault's connection to the server.
|
2756
|
-
:param Mapping[str,
|
2756
|
+
:param Mapping[str, str] data: A map of sensitive data to pass to the endpoint. Useful for templated connection strings.
|
2757
2757
|
|
2758
2758
|
Supported list of database secrets engines that can be configured:
|
2759
2759
|
:param bool insecure_tls: Specifies whether to skip verification of the server certificate when using TLS.
|
@@ -2848,7 +2848,7 @@ class SecretsMountCouchbase(dict):
|
|
2848
2848
|
|
2849
2849
|
@property
|
2850
2850
|
@pulumi.getter
|
2851
|
-
def data(self) -> Optional[Mapping[str,
|
2851
|
+
def data(self) -> Optional[Mapping[str, str]]:
|
2852
2852
|
"""
|
2853
2853
|
A map of sensitive data to pass to the endpoint. Useful for templated connection strings.
|
2854
2854
|
|
@@ -2953,7 +2953,7 @@ class SecretsMountElasticsearch(dict):
|
|
2953
2953
|
ca_path: Optional[str] = None,
|
2954
2954
|
client_cert: Optional[str] = None,
|
2955
2955
|
client_key: Optional[str] = None,
|
2956
|
-
data: Optional[Mapping[str,
|
2956
|
+
data: Optional[Mapping[str, str]] = None,
|
2957
2957
|
insecure: Optional[bool] = None,
|
2958
2958
|
plugin_name: Optional[str] = None,
|
2959
2959
|
root_rotation_statements: Optional[Sequence[str]] = None,
|
@@ -2971,7 +2971,7 @@ class SecretsMountElasticsearch(dict):
|
|
2971
2971
|
:param str ca_path: The path to a directory of PEM-encoded CA cert files to use to verify the Elasticsearch server's identity
|
2972
2972
|
:param str client_cert: The path to the certificate for the Elasticsearch client to present for communication
|
2973
2973
|
:param str client_key: The path to the key for the Elasticsearch client to use for communication
|
2974
|
-
:param Mapping[str,
|
2974
|
+
:param Mapping[str, str] data: A map of sensitive data to pass to the endpoint. Useful for templated connection strings.
|
2975
2975
|
|
2976
2976
|
Supported list of database secrets engines that can be configured:
|
2977
2977
|
:param bool insecure: Whether to disable certificate verification
|
@@ -3086,7 +3086,7 @@ class SecretsMountElasticsearch(dict):
|
|
3086
3086
|
|
3087
3087
|
@property
|
3088
3088
|
@pulumi.getter
|
3089
|
-
def data(self) -> Optional[Mapping[str,
|
3089
|
+
def data(self) -> Optional[Mapping[str, str]]:
|
3090
3090
|
"""
|
3091
3091
|
A map of sensitive data to pass to the endpoint. Useful for templated connection strings.
|
3092
3092
|
|
@@ -3183,7 +3183,7 @@ class SecretsMountHana(dict):
|
|
3183
3183
|
name: str,
|
3184
3184
|
allowed_roles: Optional[Sequence[str]] = None,
|
3185
3185
|
connection_url: Optional[str] = None,
|
3186
|
-
data: Optional[Mapping[str,
|
3186
|
+
data: Optional[Mapping[str, str]] = None,
|
3187
3187
|
disable_escaping: Optional[bool] = None,
|
3188
3188
|
max_connection_lifetime: Optional[int] = None,
|
3189
3189
|
max_idle_connections: Optional[int] = None,
|
@@ -3198,7 +3198,7 @@ class SecretsMountHana(dict):
|
|
3198
3198
|
:param Sequence[str] allowed_roles: A list of roles that are allowed to use this
|
3199
3199
|
connection.
|
3200
3200
|
:param str connection_url: Connection string to use to connect to the database.
|
3201
|
-
:param Mapping[str,
|
3201
|
+
:param Mapping[str, str] data: A map of sensitive data to pass to the endpoint. Useful for templated connection strings.
|
3202
3202
|
|
3203
3203
|
Supported list of database secrets engines that can be configured:
|
3204
3204
|
:param bool disable_escaping: Disable special character escaping in username and password
|
@@ -3265,7 +3265,7 @@ class SecretsMountHana(dict):
|
|
3265
3265
|
|
3266
3266
|
@property
|
3267
3267
|
@pulumi.getter
|
3268
|
-
def data(self) -> Optional[Mapping[str,
|
3268
|
+
def data(self) -> Optional[Mapping[str, str]]:
|
3269
3269
|
"""
|
3270
3270
|
A map of sensitive data to pass to the endpoint. Useful for templated connection strings.
|
3271
3271
|
|
@@ -3389,7 +3389,7 @@ class SecretsMountInfluxdb(dict):
|
|
3389
3389
|
username: str,
|
3390
3390
|
allowed_roles: Optional[Sequence[str]] = None,
|
3391
3391
|
connect_timeout: Optional[int] = None,
|
3392
|
-
data: Optional[Mapping[str,
|
3392
|
+
data: Optional[Mapping[str, str]] = None,
|
3393
3393
|
insecure_tls: Optional[bool] = None,
|
3394
3394
|
pem_bundle: Optional[str] = None,
|
3395
3395
|
pem_json: Optional[str] = None,
|
@@ -3407,7 +3407,7 @@ class SecretsMountInfluxdb(dict):
|
|
3407
3407
|
:param Sequence[str] allowed_roles: A list of roles that are allowed to use this
|
3408
3408
|
connection.
|
3409
3409
|
:param int connect_timeout: The number of seconds to use as a connection timeout.
|
3410
|
-
:param Mapping[str,
|
3410
|
+
:param Mapping[str, str] data: A map of sensitive data to pass to the endpoint. Useful for templated connection strings.
|
3411
3411
|
|
3412
3412
|
Supported list of database secrets engines that can be configured:
|
3413
3413
|
:param bool insecure_tls: Whether to skip verification of the server certificate when using TLS.
|
@@ -3501,7 +3501,7 @@ class SecretsMountInfluxdb(dict):
|
|
3501
3501
|
|
3502
3502
|
@property
|
3503
3503
|
@pulumi.getter
|
3504
|
-
def data(self) -> Optional[Mapping[str,
|
3504
|
+
def data(self) -> Optional[Mapping[str, str]]:
|
3505
3505
|
"""
|
3506
3506
|
A map of sensitive data to pass to the endpoint. Useful for templated connection strings.
|
3507
3507
|
|
@@ -3622,7 +3622,7 @@ class SecretsMountMongodb(dict):
|
|
3622
3622
|
name: str,
|
3623
3623
|
allowed_roles: Optional[Sequence[str]] = None,
|
3624
3624
|
connection_url: Optional[str] = None,
|
3625
|
-
data: Optional[Mapping[str,
|
3625
|
+
data: Optional[Mapping[str, str]] = None,
|
3626
3626
|
max_connection_lifetime: Optional[int] = None,
|
3627
3627
|
max_idle_connections: Optional[int] = None,
|
3628
3628
|
max_open_connections: Optional[int] = None,
|
@@ -3637,7 +3637,7 @@ class SecretsMountMongodb(dict):
|
|
3637
3637
|
:param Sequence[str] allowed_roles: A list of roles that are allowed to use this
|
3638
3638
|
connection.
|
3639
3639
|
:param str connection_url: Connection string to use to connect to the database.
|
3640
|
-
:param Mapping[str,
|
3640
|
+
:param Mapping[str, str] data: A map of sensitive data to pass to the endpoint. Useful for templated connection strings.
|
3641
3641
|
|
3642
3642
|
Supported list of database secrets engines that can be configured:
|
3643
3643
|
:param int max_connection_lifetime: Maximum number of seconds a connection may be reused.
|
@@ -3704,7 +3704,7 @@ class SecretsMountMongodb(dict):
|
|
3704
3704
|
|
3705
3705
|
@property
|
3706
3706
|
@pulumi.getter
|
3707
|
-
def data(self) -> Optional[Mapping[str,
|
3707
|
+
def data(self) -> Optional[Mapping[str, str]]:
|
3708
3708
|
"""
|
3709
3709
|
A map of sensitive data to pass to the endpoint. Useful for templated connection strings.
|
3710
3710
|
|
@@ -3823,7 +3823,7 @@ class SecretsMountMongodbatla(dict):
|
|
3823
3823
|
project_id: str,
|
3824
3824
|
public_key: str,
|
3825
3825
|
allowed_roles: Optional[Sequence[str]] = None,
|
3826
|
-
data: Optional[Mapping[str,
|
3826
|
+
data: Optional[Mapping[str, str]] = None,
|
3827
3827
|
plugin_name: Optional[str] = None,
|
3828
3828
|
root_rotation_statements: Optional[Sequence[str]] = None,
|
3829
3829
|
verify_connection: Optional[bool] = None):
|
@@ -3834,7 +3834,7 @@ class SecretsMountMongodbatla(dict):
|
|
3834
3834
|
:param str public_key: The Public Programmatic API Key used to authenticate with the MongoDB Atlas API.
|
3835
3835
|
:param Sequence[str] allowed_roles: A list of roles that are allowed to use this
|
3836
3836
|
connection.
|
3837
|
-
:param Mapping[str,
|
3837
|
+
:param Mapping[str, str] data: A map of sensitive data to pass to the endpoint. Useful for templated connection strings.
|
3838
3838
|
|
3839
3839
|
Supported list of database secrets engines that can be configured:
|
3840
3840
|
:param str plugin_name: Specifies the name of the plugin to use.
|
@@ -3900,7 +3900,7 @@ class SecretsMountMongodbatla(dict):
|
|
3900
3900
|
|
3901
3901
|
@property
|
3902
3902
|
@pulumi.getter
|
3903
|
-
def data(self) -> Optional[Mapping[str,
|
3903
|
+
def data(self) -> Optional[Mapping[str, str]]:
|
3904
3904
|
"""
|
3905
3905
|
A map of sensitive data to pass to the endpoint. Useful for templated connection strings.
|
3906
3906
|
|
@@ -3978,7 +3978,7 @@ class SecretsMountMssql(dict):
|
|
3978
3978
|
allowed_roles: Optional[Sequence[str]] = None,
|
3979
3979
|
connection_url: Optional[str] = None,
|
3980
3980
|
contained_db: Optional[bool] = None,
|
3981
|
-
data: Optional[Mapping[str,
|
3981
|
+
data: Optional[Mapping[str, str]] = None,
|
3982
3982
|
disable_escaping: Optional[bool] = None,
|
3983
3983
|
max_connection_lifetime: Optional[int] = None,
|
3984
3984
|
max_idle_connections: Optional[int] = None,
|
@@ -3995,7 +3995,7 @@ class SecretsMountMssql(dict):
|
|
3995
3995
|
connection.
|
3996
3996
|
:param str connection_url: Connection string to use to connect to the database.
|
3997
3997
|
:param bool contained_db: Set to true when the target is a Contained Database, e.g. AzureSQL.
|
3998
|
-
:param Mapping[str,
|
3998
|
+
:param Mapping[str, str] data: A map of sensitive data to pass to the endpoint. Useful for templated connection strings.
|
3999
3999
|
|
4000
4000
|
Supported list of database secrets engines that can be configured:
|
4001
4001
|
:param bool disable_escaping: Disable special character escaping in username and password
|
@@ -4075,7 +4075,7 @@ class SecretsMountMssql(dict):
|
|
4075
4075
|
|
4076
4076
|
@property
|
4077
4077
|
@pulumi.getter
|
4078
|
-
def data(self) -> Optional[Mapping[str,
|
4078
|
+
def data(self) -> Optional[Mapping[str, str]]:
|
4079
4079
|
"""
|
4080
4080
|
A map of sensitive data to pass to the endpoint. Useful for templated connection strings.
|
4081
4081
|
|
@@ -4213,7 +4213,7 @@ class SecretsMountMysql(dict):
|
|
4213
4213
|
allowed_roles: Optional[Sequence[str]] = None,
|
4214
4214
|
auth_type: Optional[str] = None,
|
4215
4215
|
connection_url: Optional[str] = None,
|
4216
|
-
data: Optional[Mapping[str,
|
4216
|
+
data: Optional[Mapping[str, str]] = None,
|
4217
4217
|
max_connection_lifetime: Optional[int] = None,
|
4218
4218
|
max_idle_connections: Optional[int] = None,
|
4219
4219
|
max_open_connections: Optional[int] = None,
|
@@ -4232,7 +4232,7 @@ class SecretsMountMysql(dict):
|
|
4232
4232
|
connection.
|
4233
4233
|
:param str auth_type: Specify alternative authorization type. (Only 'gcp_iam' is valid currently)
|
4234
4234
|
:param str connection_url: Connection string to use to connect to the database.
|
4235
|
-
:param Mapping[str,
|
4235
|
+
:param Mapping[str, str] data: A map of sensitive data to pass to the endpoint. Useful for templated connection strings.
|
4236
4236
|
|
4237
4237
|
Supported list of database secrets engines that can be configured:
|
4238
4238
|
:param int max_connection_lifetime: Maximum number of seconds a connection may be reused.
|
@@ -4318,7 +4318,7 @@ class SecretsMountMysql(dict):
|
|
4318
4318
|
|
4319
4319
|
@property
|
4320
4320
|
@pulumi.getter
|
4321
|
-
def data(self) -> Optional[Mapping[str,
|
4321
|
+
def data(self) -> Optional[Mapping[str, str]]:
|
4322
4322
|
"""
|
4323
4323
|
A map of sensitive data to pass to the endpoint. Useful for templated connection strings.
|
4324
4324
|
|
@@ -4472,7 +4472,7 @@ class SecretsMountMysqlAurora(dict):
|
|
4472
4472
|
allowed_roles: Optional[Sequence[str]] = None,
|
4473
4473
|
auth_type: Optional[str] = None,
|
4474
4474
|
connection_url: Optional[str] = None,
|
4475
|
-
data: Optional[Mapping[str,
|
4475
|
+
data: Optional[Mapping[str, str]] = None,
|
4476
4476
|
max_connection_lifetime: Optional[int] = None,
|
4477
4477
|
max_idle_connections: Optional[int] = None,
|
4478
4478
|
max_open_connections: Optional[int] = None,
|
@@ -4491,7 +4491,7 @@ class SecretsMountMysqlAurora(dict):
|
|
4491
4491
|
connection.
|
4492
4492
|
:param str auth_type: Specify alternative authorization type. (Only 'gcp_iam' is valid currently)
|
4493
4493
|
:param str connection_url: Connection string to use to connect to the database.
|
4494
|
-
:param Mapping[str,
|
4494
|
+
:param Mapping[str, str] data: A map of sensitive data to pass to the endpoint. Useful for templated connection strings.
|
4495
4495
|
|
4496
4496
|
Supported list of database secrets engines that can be configured:
|
4497
4497
|
:param int max_connection_lifetime: Maximum number of seconds a connection may be reused.
|
@@ -4577,7 +4577,7 @@ class SecretsMountMysqlAurora(dict):
|
|
4577
4577
|
|
4578
4578
|
@property
|
4579
4579
|
@pulumi.getter
|
4580
|
-
def data(self) -> Optional[Mapping[str,
|
4580
|
+
def data(self) -> Optional[Mapping[str, str]]:
|
4581
4581
|
"""
|
4582
4582
|
A map of sensitive data to pass to the endpoint. Useful for templated connection strings.
|
4583
4583
|
|
@@ -4731,7 +4731,7 @@ class SecretsMountMysqlLegacy(dict):
|
|
4731
4731
|
allowed_roles: Optional[Sequence[str]] = None,
|
4732
4732
|
auth_type: Optional[str] = None,
|
4733
4733
|
connection_url: Optional[str] = None,
|
4734
|
-
data: Optional[Mapping[str,
|
4734
|
+
data: Optional[Mapping[str, str]] = None,
|
4735
4735
|
max_connection_lifetime: Optional[int] = None,
|
4736
4736
|
max_idle_connections: Optional[int] = None,
|
4737
4737
|
max_open_connections: Optional[int] = None,
|
@@ -4750,7 +4750,7 @@ class SecretsMountMysqlLegacy(dict):
|
|
4750
4750
|
connection.
|
4751
4751
|
:param str auth_type: Specify alternative authorization type. (Only 'gcp_iam' is valid currently)
|
4752
4752
|
:param str connection_url: Connection string to use to connect to the database.
|
4753
|
-
:param Mapping[str,
|
4753
|
+
:param Mapping[str, str] data: A map of sensitive data to pass to the endpoint. Useful for templated connection strings.
|
4754
4754
|
|
4755
4755
|
Supported list of database secrets engines that can be configured:
|
4756
4756
|
:param int max_connection_lifetime: Maximum number of seconds a connection may be reused.
|
@@ -4836,7 +4836,7 @@ class SecretsMountMysqlLegacy(dict):
|
|
4836
4836
|
|
4837
4837
|
@property
|
4838
4838
|
@pulumi.getter
|
4839
|
-
def data(self) -> Optional[Mapping[str,
|
4839
|
+
def data(self) -> Optional[Mapping[str, str]]:
|
4840
4840
|
"""
|
4841
4841
|
A map of sensitive data to pass to the endpoint. Useful for templated connection strings.
|
4842
4842
|
|
@@ -4990,7 +4990,7 @@ class SecretsMountMysqlRd(dict):
|
|
4990
4990
|
allowed_roles: Optional[Sequence[str]] = None,
|
4991
4991
|
auth_type: Optional[str] = None,
|
4992
4992
|
connection_url: Optional[str] = None,
|
4993
|
-
data: Optional[Mapping[str,
|
4993
|
+
data: Optional[Mapping[str, str]] = None,
|
4994
4994
|
max_connection_lifetime: Optional[int] = None,
|
4995
4995
|
max_idle_connections: Optional[int] = None,
|
4996
4996
|
max_open_connections: Optional[int] = None,
|
@@ -5009,7 +5009,7 @@ class SecretsMountMysqlRd(dict):
|
|
5009
5009
|
connection.
|
5010
5010
|
:param str auth_type: Specify alternative authorization type. (Only 'gcp_iam' is valid currently)
|
5011
5011
|
:param str connection_url: Connection string to use to connect to the database.
|
5012
|
-
:param Mapping[str,
|
5012
|
+
:param Mapping[str, str] data: A map of sensitive data to pass to the endpoint. Useful for templated connection strings.
|
5013
5013
|
|
5014
5014
|
Supported list of database secrets engines that can be configured:
|
5015
5015
|
:param int max_connection_lifetime: Maximum number of seconds a connection may be reused.
|
@@ -5095,7 +5095,7 @@ class SecretsMountMysqlRd(dict):
|
|
5095
5095
|
|
5096
5096
|
@property
|
5097
5097
|
@pulumi.getter
|
5098
|
-
def data(self) -> Optional[Mapping[str,
|
5098
|
+
def data(self) -> Optional[Mapping[str, str]]:
|
5099
5099
|
"""
|
5100
5100
|
A map of sensitive data to pass to the endpoint. Useful for templated connection strings.
|
5101
5101
|
|
@@ -5244,7 +5244,7 @@ class SecretsMountOracle(dict):
|
|
5244
5244
|
name: str,
|
5245
5245
|
allowed_roles: Optional[Sequence[str]] = None,
|
5246
5246
|
connection_url: Optional[str] = None,
|
5247
|
-
data: Optional[Mapping[str,
|
5247
|
+
data: Optional[Mapping[str, str]] = None,
|
5248
5248
|
disconnect_sessions: Optional[bool] = None,
|
5249
5249
|
max_connection_lifetime: Optional[int] = None,
|
5250
5250
|
max_idle_connections: Optional[int] = None,
|
@@ -5261,7 +5261,7 @@ class SecretsMountOracle(dict):
|
|
5261
5261
|
:param Sequence[str] allowed_roles: A list of roles that are allowed to use this
|
5262
5262
|
connection.
|
5263
5263
|
:param str connection_url: Connection string to use to connect to the database.
|
5264
|
-
:param Mapping[str,
|
5264
|
+
:param Mapping[str, str] data: A map of sensitive data to pass to the endpoint. Useful for templated connection strings.
|
5265
5265
|
|
5266
5266
|
Supported list of database secrets engines that can be configured:
|
5267
5267
|
:param bool disconnect_sessions: Set to true to disconnect any open sessions prior to running the revocation statements.
|
@@ -5334,7 +5334,7 @@ class SecretsMountOracle(dict):
|
|
5334
5334
|
|
5335
5335
|
@property
|
5336
5336
|
@pulumi.getter
|
5337
|
-
def data(self) -> Optional[Mapping[str,
|
5337
|
+
def data(self) -> Optional[Mapping[str, str]]:
|
5338
5338
|
"""
|
5339
5339
|
A map of sensitive data to pass to the endpoint. Useful for templated connection strings.
|
5340
5340
|
|
@@ -5478,7 +5478,7 @@ class SecretsMountPostgresql(dict):
|
|
5478
5478
|
allowed_roles: Optional[Sequence[str]] = None,
|
5479
5479
|
auth_type: Optional[str] = None,
|
5480
5480
|
connection_url: Optional[str] = None,
|
5481
|
-
data: Optional[Mapping[str,
|
5481
|
+
data: Optional[Mapping[str, str]] = None,
|
5482
5482
|
disable_escaping: Optional[bool] = None,
|
5483
5483
|
max_connection_lifetime: Optional[int] = None,
|
5484
5484
|
max_idle_connections: Optional[int] = None,
|
@@ -5496,7 +5496,7 @@ class SecretsMountPostgresql(dict):
|
|
5496
5496
|
connection.
|
5497
5497
|
:param str auth_type: Specify alternative authorization type. (Only 'gcp_iam' is valid currently)
|
5498
5498
|
:param str connection_url: Connection string to use to connect to the database.
|
5499
|
-
:param Mapping[str,
|
5499
|
+
:param Mapping[str, str] data: A map of sensitive data to pass to the endpoint. Useful for templated connection strings.
|
5500
5500
|
|
5501
5501
|
Supported list of database secrets engines that can be configured:
|
5502
5502
|
:param bool disable_escaping: Disable special character escaping in username and password
|
@@ -5579,7 +5579,7 @@ class SecretsMountPostgresql(dict):
|
|
5579
5579
|
|
5580
5580
|
@property
|
5581
5581
|
@pulumi.getter
|
5582
|
-
def data(self) -> Optional[Mapping[str,
|
5582
|
+
def data(self) -> Optional[Mapping[str, str]]:
|
5583
5583
|
"""
|
5584
5584
|
A map of sensitive data to pass to the endpoint. Useful for templated connection strings.
|
5585
5585
|
|
@@ -5713,7 +5713,7 @@ class SecretsMountRedi(dict):
|
|
5713
5713
|
username: str,
|
5714
5714
|
allowed_roles: Optional[Sequence[str]] = None,
|
5715
5715
|
ca_cert: Optional[str] = None,
|
5716
|
-
data: Optional[Mapping[str,
|
5716
|
+
data: Optional[Mapping[str, str]] = None,
|
5717
5717
|
insecure_tls: Optional[bool] = None,
|
5718
5718
|
plugin_name: Optional[str] = None,
|
5719
5719
|
port: Optional[int] = None,
|
@@ -5728,7 +5728,7 @@ class SecretsMountRedi(dict):
|
|
5728
5728
|
:param Sequence[str] allowed_roles: A list of roles that are allowed to use this
|
5729
5729
|
connection.
|
5730
5730
|
:param str ca_cert: The contents of a PEM-encoded CA cert file to use to verify the Redis server's identity.
|
5731
|
-
:param Mapping[str,
|
5731
|
+
:param Mapping[str, str] data: A map of sensitive data to pass to the endpoint. Useful for templated connection strings.
|
5732
5732
|
|
5733
5733
|
Supported list of database secrets engines that can be configured:
|
5734
5734
|
:param bool insecure_tls: Specifies whether to skip verification of the server certificate when using TLS.
|
@@ -5813,7 +5813,7 @@ class SecretsMountRedi(dict):
|
|
5813
5813
|
|
5814
5814
|
@property
|
5815
5815
|
@pulumi.getter
|
5816
|
-
def data(self) -> Optional[Mapping[str,
|
5816
|
+
def data(self) -> Optional[Mapping[str, str]]:
|
5817
5817
|
"""
|
5818
5818
|
A map of sensitive data to pass to the endpoint. Useful for templated connection strings.
|
5819
5819
|
|
@@ -5900,7 +5900,7 @@ class SecretsMountRedisElasticach(dict):
|
|
5900
5900
|
name: str,
|
5901
5901
|
url: str,
|
5902
5902
|
allowed_roles: Optional[Sequence[str]] = None,
|
5903
|
-
data: Optional[Mapping[str,
|
5903
|
+
data: Optional[Mapping[str, str]] = None,
|
5904
5904
|
password: Optional[str] = None,
|
5905
5905
|
plugin_name: Optional[str] = None,
|
5906
5906
|
region: Optional[str] = None,
|
@@ -5912,7 +5912,7 @@ class SecretsMountRedisElasticach(dict):
|
|
5912
5912
|
:param str url: The configuration endpoint for the ElastiCache cluster to connect to.
|
5913
5913
|
:param Sequence[str] allowed_roles: A list of roles that are allowed to use this
|
5914
5914
|
connection.
|
5915
|
-
:param Mapping[str,
|
5915
|
+
:param Mapping[str, str] data: A map of sensitive data to pass to the endpoint. Useful for templated connection strings.
|
5916
5916
|
|
5917
5917
|
Supported list of database secrets engines that can be configured:
|
5918
5918
|
:param str password: The AWS secret key id to use to talk to ElastiCache. If omitted the credentials chain provider is used instead.
|
@@ -5969,7 +5969,7 @@ class SecretsMountRedisElasticach(dict):
|
|
5969
5969
|
|
5970
5970
|
@property
|
5971
5971
|
@pulumi.getter
|
5972
|
-
def data(self) -> Optional[Mapping[str,
|
5972
|
+
def data(self) -> Optional[Mapping[str, str]]:
|
5973
5973
|
"""
|
5974
5974
|
A map of sensitive data to pass to the endpoint. Useful for templated connection strings.
|
5975
5975
|
|
@@ -6068,7 +6068,7 @@ class SecretsMountRedshift(dict):
|
|
6068
6068
|
name: str,
|
6069
6069
|
allowed_roles: Optional[Sequence[str]] = None,
|
6070
6070
|
connection_url: Optional[str] = None,
|
6071
|
-
data: Optional[Mapping[str,
|
6071
|
+
data: Optional[Mapping[str, str]] = None,
|
6072
6072
|
disable_escaping: Optional[bool] = None,
|
6073
6073
|
max_connection_lifetime: Optional[int] = None,
|
6074
6074
|
max_idle_connections: Optional[int] = None,
|
@@ -6084,7 +6084,7 @@ class SecretsMountRedshift(dict):
|
|
6084
6084
|
:param Sequence[str] allowed_roles: A list of roles that are allowed to use this
|
6085
6085
|
connection.
|
6086
6086
|
:param str connection_url: Connection string to use to connect to the database.
|
6087
|
-
:param Mapping[str,
|
6087
|
+
:param Mapping[str, str] data: A map of sensitive data to pass to the endpoint. Useful for templated connection strings.
|
6088
6088
|
|
6089
6089
|
Supported list of database secrets engines that can be configured:
|
6090
6090
|
:param bool disable_escaping: Disable special character escaping in username and password
|
@@ -6154,7 +6154,7 @@ class SecretsMountRedshift(dict):
|
|
6154
6154
|
|
6155
6155
|
@property
|
6156
6156
|
@pulumi.getter
|
6157
|
-
def data(self) -> Optional[Mapping[str,
|
6157
|
+
def data(self) -> Optional[Mapping[str, str]]:
|
6158
6158
|
"""
|
6159
6159
|
A map of sensitive data to pass to the endpoint. Useful for templated connection strings.
|
6160
6160
|
|
@@ -6283,7 +6283,7 @@ class SecretsMountSnowflake(dict):
|
|
6283
6283
|
name: str,
|
6284
6284
|
allowed_roles: Optional[Sequence[str]] = None,
|
6285
6285
|
connection_url: Optional[str] = None,
|
6286
|
-
data: Optional[Mapping[str,
|
6286
|
+
data: Optional[Mapping[str, str]] = None,
|
6287
6287
|
max_connection_lifetime: Optional[int] = None,
|
6288
6288
|
max_idle_connections: Optional[int] = None,
|
6289
6289
|
max_open_connections: Optional[int] = None,
|
@@ -6298,7 +6298,7 @@ class SecretsMountSnowflake(dict):
|
|
6298
6298
|
:param Sequence[str] allowed_roles: A list of roles that are allowed to use this
|
6299
6299
|
connection.
|
6300
6300
|
:param str connection_url: Connection string to use to connect to the database.
|
6301
|
-
:param Mapping[str,
|
6301
|
+
:param Mapping[str, str] data: A map of sensitive data to pass to the endpoint. Useful for templated connection strings.
|
6302
6302
|
|
6303
6303
|
Supported list of database secrets engines that can be configured:
|
6304
6304
|
:param int max_connection_lifetime: Maximum number of seconds a connection may be reused.
|
@@ -6365,7 +6365,7 @@ class SecretsMountSnowflake(dict):
|
|
6365
6365
|
|
6366
6366
|
@property
|
6367
6367
|
@pulumi.getter
|
6368
|
-
def data(self) -> Optional[Mapping[str,
|
6368
|
+
def data(self) -> Optional[Mapping[str, str]]:
|
6369
6369
|
"""
|
6370
6370
|
A map of sensitive data to pass to the endpoint. Useful for templated connection strings.
|
6371
6371
|
|
@@ -20,7 +20,7 @@ class SecretBackendConnectionArgs:
|
|
20
20
|
allowed_roles: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
21
21
|
cassandra: Optional[pulumi.Input['SecretBackendConnectionCassandraArgs']] = None,
|
22
22
|
couchbase: Optional[pulumi.Input['SecretBackendConnectionCouchbaseArgs']] = None,
|
23
|
-
data: Optional[pulumi.Input[Mapping[str,
|
23
|
+
data: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
24
24
|
elasticsearch: Optional[pulumi.Input['SecretBackendConnectionElasticsearchArgs']] = None,
|
25
25
|
hana: Optional[pulumi.Input['SecretBackendConnectionHanaArgs']] = None,
|
26
26
|
influxdb: Optional[pulumi.Input['SecretBackendConnectionInfluxdbArgs']] = None,
|
@@ -49,7 +49,7 @@ class SecretBackendConnectionArgs:
|
|
49
49
|
connection.
|
50
50
|
:param pulumi.Input['SecretBackendConnectionCassandraArgs'] cassandra: A nested block containing configuration options for Cassandra connections.
|
51
51
|
:param pulumi.Input['SecretBackendConnectionCouchbaseArgs'] couchbase: A nested block containing configuration options for Couchbase connections.
|
52
|
-
:param pulumi.Input[Mapping[str,
|
52
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] data: A map of sensitive data to pass to the endpoint. Useful for templated connection strings.
|
53
53
|
:param pulumi.Input['SecretBackendConnectionElasticsearchArgs'] elasticsearch: A nested block containing configuration options for Elasticsearch connections.
|
54
54
|
:param pulumi.Input['SecretBackendConnectionHanaArgs'] hana: A nested block containing configuration options for SAP HanaDB connections.
|
55
55
|
:param pulumi.Input['SecretBackendConnectionInfluxdbArgs'] influxdb: A nested block containing configuration options for InfluxDB connections.
|
@@ -181,14 +181,14 @@ class SecretBackendConnectionArgs:
|
|
181
181
|
|
182
182
|
@property
|
183
183
|
@pulumi.getter
|
184
|
-
def data(self) -> Optional[pulumi.Input[Mapping[str,
|
184
|
+
def data(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
185
185
|
"""
|
186
186
|
A map of sensitive data to pass to the endpoint. Useful for templated connection strings.
|
187
187
|
"""
|
188
188
|
return pulumi.get(self, "data")
|
189
189
|
|
190
190
|
@data.setter
|
191
|
-
def data(self, value: Optional[pulumi.Input[Mapping[str,
|
191
|
+
def data(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
192
192
|
pulumi.set(self, "data", value)
|
193
193
|
|
194
194
|
@property
|
@@ -457,7 +457,7 @@ class _SecretBackendConnectionState:
|
|
457
457
|
backend: Optional[pulumi.Input[str]] = None,
|
458
458
|
cassandra: Optional[pulumi.Input['SecretBackendConnectionCassandraArgs']] = None,
|
459
459
|
couchbase: Optional[pulumi.Input['SecretBackendConnectionCouchbaseArgs']] = None,
|
460
|
-
data: Optional[pulumi.Input[Mapping[str,
|
460
|
+
data: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
461
461
|
elasticsearch: Optional[pulumi.Input['SecretBackendConnectionElasticsearchArgs']] = None,
|
462
462
|
hana: Optional[pulumi.Input['SecretBackendConnectionHanaArgs']] = None,
|
463
463
|
influxdb: Optional[pulumi.Input['SecretBackendConnectionInfluxdbArgs']] = None,
|
@@ -486,7 +486,7 @@ class _SecretBackendConnectionState:
|
|
486
486
|
:param pulumi.Input[str] backend: The unique name of the Vault mount to configure.
|
487
487
|
:param pulumi.Input['SecretBackendConnectionCassandraArgs'] cassandra: A nested block containing configuration options for Cassandra connections.
|
488
488
|
:param pulumi.Input['SecretBackendConnectionCouchbaseArgs'] couchbase: A nested block containing configuration options for Couchbase connections.
|
489
|
-
:param pulumi.Input[Mapping[str,
|
489
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] data: A map of sensitive data to pass to the endpoint. Useful for templated connection strings.
|
490
490
|
:param pulumi.Input['SecretBackendConnectionElasticsearchArgs'] elasticsearch: A nested block containing configuration options for Elasticsearch connections.
|
491
491
|
:param pulumi.Input['SecretBackendConnectionHanaArgs'] hana: A nested block containing configuration options for SAP HanaDB connections.
|
492
492
|
:param pulumi.Input['SecretBackendConnectionInfluxdbArgs'] influxdb: A nested block containing configuration options for InfluxDB connections.
|
@@ -619,14 +619,14 @@ class _SecretBackendConnectionState:
|
|
619
619
|
|
620
620
|
@property
|
621
621
|
@pulumi.getter
|
622
|
-
def data(self) -> Optional[pulumi.Input[Mapping[str,
|
622
|
+
def data(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
623
623
|
"""
|
624
624
|
A map of sensitive data to pass to the endpoint. Useful for templated connection strings.
|
625
625
|
"""
|
626
626
|
return pulumi.get(self, "data")
|
627
627
|
|
628
628
|
@data.setter
|
629
|
-
def data(self, value: Optional[pulumi.Input[Mapping[str,
|
629
|
+
def data(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
630
630
|
pulumi.set(self, "data", value)
|
631
631
|
|
632
632
|
@property
|
@@ -897,7 +897,7 @@ class SecretBackendConnection(pulumi.CustomResource):
|
|
897
897
|
backend: Optional[pulumi.Input[str]] = None,
|
898
898
|
cassandra: Optional[pulumi.Input[Union['SecretBackendConnectionCassandraArgs', 'SecretBackendConnectionCassandraArgsDict']]] = None,
|
899
899
|
couchbase: Optional[pulumi.Input[Union['SecretBackendConnectionCouchbaseArgs', 'SecretBackendConnectionCouchbaseArgsDict']]] = None,
|
900
|
-
data: Optional[pulumi.Input[Mapping[str,
|
900
|
+
data: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
901
901
|
elasticsearch: Optional[pulumi.Input[Union['SecretBackendConnectionElasticsearchArgs', 'SecretBackendConnectionElasticsearchArgsDict']]] = None,
|
902
902
|
hana: Optional[pulumi.Input[Union['SecretBackendConnectionHanaArgs', 'SecretBackendConnectionHanaArgsDict']]] = None,
|
903
903
|
influxdb: Optional[pulumi.Input[Union['SecretBackendConnectionInfluxdbArgs', 'SecretBackendConnectionInfluxdbArgsDict']]] = None,
|
@@ -957,7 +957,7 @@ class SecretBackendConnection(pulumi.CustomResource):
|
|
957
957
|
:param pulumi.Input[str] backend: The unique name of the Vault mount to configure.
|
958
958
|
:param pulumi.Input[Union['SecretBackendConnectionCassandraArgs', 'SecretBackendConnectionCassandraArgsDict']] cassandra: A nested block containing configuration options for Cassandra connections.
|
959
959
|
:param pulumi.Input[Union['SecretBackendConnectionCouchbaseArgs', 'SecretBackendConnectionCouchbaseArgsDict']] couchbase: A nested block containing configuration options for Couchbase connections.
|
960
|
-
:param pulumi.Input[Mapping[str,
|
960
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] data: A map of sensitive data to pass to the endpoint. Useful for templated connection strings.
|
961
961
|
:param pulumi.Input[Union['SecretBackendConnectionElasticsearchArgs', 'SecretBackendConnectionElasticsearchArgsDict']] elasticsearch: A nested block containing configuration options for Elasticsearch connections.
|
962
962
|
:param pulumi.Input[Union['SecretBackendConnectionHanaArgs', 'SecretBackendConnectionHanaArgsDict']] hana: A nested block containing configuration options for SAP HanaDB connections.
|
963
963
|
:param pulumi.Input[Union['SecretBackendConnectionInfluxdbArgs', 'SecretBackendConnectionInfluxdbArgsDict']] influxdb: A nested block containing configuration options for InfluxDB connections.
|
@@ -1041,7 +1041,7 @@ class SecretBackendConnection(pulumi.CustomResource):
|
|
1041
1041
|
backend: Optional[pulumi.Input[str]] = None,
|
1042
1042
|
cassandra: Optional[pulumi.Input[Union['SecretBackendConnectionCassandraArgs', 'SecretBackendConnectionCassandraArgsDict']]] = None,
|
1043
1043
|
couchbase: Optional[pulumi.Input[Union['SecretBackendConnectionCouchbaseArgs', 'SecretBackendConnectionCouchbaseArgsDict']]] = None,
|
1044
|
-
data: Optional[pulumi.Input[Mapping[str,
|
1044
|
+
data: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1045
1045
|
elasticsearch: Optional[pulumi.Input[Union['SecretBackendConnectionElasticsearchArgs', 'SecretBackendConnectionElasticsearchArgsDict']]] = None,
|
1046
1046
|
hana: Optional[pulumi.Input[Union['SecretBackendConnectionHanaArgs', 'SecretBackendConnectionHanaArgsDict']]] = None,
|
1047
1047
|
influxdb: Optional[pulumi.Input[Union['SecretBackendConnectionInfluxdbArgs', 'SecretBackendConnectionInfluxdbArgsDict']]] = None,
|
@@ -1114,7 +1114,7 @@ class SecretBackendConnection(pulumi.CustomResource):
|
|
1114
1114
|
backend: Optional[pulumi.Input[str]] = None,
|
1115
1115
|
cassandra: Optional[pulumi.Input[Union['SecretBackendConnectionCassandraArgs', 'SecretBackendConnectionCassandraArgsDict']]] = None,
|
1116
1116
|
couchbase: Optional[pulumi.Input[Union['SecretBackendConnectionCouchbaseArgs', 'SecretBackendConnectionCouchbaseArgsDict']]] = None,
|
1117
|
-
data: Optional[pulumi.Input[Mapping[str,
|
1117
|
+
data: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1118
1118
|
elasticsearch: Optional[pulumi.Input[Union['SecretBackendConnectionElasticsearchArgs', 'SecretBackendConnectionElasticsearchArgsDict']]] = None,
|
1119
1119
|
hana: Optional[pulumi.Input[Union['SecretBackendConnectionHanaArgs', 'SecretBackendConnectionHanaArgsDict']]] = None,
|
1120
1120
|
influxdb: Optional[pulumi.Input[Union['SecretBackendConnectionInfluxdbArgs', 'SecretBackendConnectionInfluxdbArgsDict']]] = None,
|
@@ -1148,7 +1148,7 @@ class SecretBackendConnection(pulumi.CustomResource):
|
|
1148
1148
|
:param pulumi.Input[str] backend: The unique name of the Vault mount to configure.
|
1149
1149
|
:param pulumi.Input[Union['SecretBackendConnectionCassandraArgs', 'SecretBackendConnectionCassandraArgsDict']] cassandra: A nested block containing configuration options for Cassandra connections.
|
1150
1150
|
:param pulumi.Input[Union['SecretBackendConnectionCouchbaseArgs', 'SecretBackendConnectionCouchbaseArgsDict']] couchbase: A nested block containing configuration options for Couchbase connections.
|
1151
|
-
:param pulumi.Input[Mapping[str,
|
1151
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] data: A map of sensitive data to pass to the endpoint. Useful for templated connection strings.
|
1152
1152
|
:param pulumi.Input[Union['SecretBackendConnectionElasticsearchArgs', 'SecretBackendConnectionElasticsearchArgsDict']] elasticsearch: A nested block containing configuration options for Elasticsearch connections.
|
1153
1153
|
:param pulumi.Input[Union['SecretBackendConnectionHanaArgs', 'SecretBackendConnectionHanaArgsDict']] hana: A nested block containing configuration options for SAP HanaDB connections.
|
1154
1154
|
:param pulumi.Input[Union['SecretBackendConnectionInfluxdbArgs', 'SecretBackendConnectionInfluxdbArgsDict']] influxdb: A nested block containing configuration options for InfluxDB connections.
|
@@ -1244,7 +1244,7 @@ class SecretBackendConnection(pulumi.CustomResource):
|
|
1244
1244
|
|
1245
1245
|
@property
|
1246
1246
|
@pulumi.getter
|
1247
|
-
def data(self) -> pulumi.Output[Optional[Mapping[str,
|
1247
|
+
def data(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
|
1248
1248
|
"""
|
1249
1249
|
A map of sensitive data to pass to the endpoint. Useful for templated connection strings.
|
1250
1250
|
"""
|