pulumi-vault 7.2.0a1755297899__py3-none-any.whl → 7.3.0a1755586140__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/__init__.py +18 -0
- pulumi_vault/_inputs.py +201 -0
- pulumi_vault/aws/secret_backend.py +627 -49
- pulumi_vault/azure/backend.py +788 -15
- pulumi_vault/consul/secret_backend.py +660 -28
- pulumi_vault/database/secrets_mount.py +47 -0
- pulumi_vault/gcp/secret_backend.py +599 -56
- pulumi_vault/jwt/auth_backend.py +47 -0
- pulumi_vault/kmip/secret_backend.py +787 -7
- pulumi_vault/kubernetes/secret_backend.py +47 -0
- pulumi_vault/ldap/secret_backend.py +75 -35
- pulumi_vault/mount.py +47 -0
- pulumi_vault/nomad_secret_backend.py +660 -21
- pulumi_vault/oci_auth_backend.py +683 -0
- pulumi_vault/oci_auth_backend_role.py +798 -0
- pulumi_vault/outputs.py +153 -0
- pulumi_vault/pkisecret/backend_config_scep.py +68 -21
- pulumi_vault/pkisecret/get_backend_config_scep.py +21 -1
- pulumi_vault/pulumi-plugin.json +1 -1
- pulumi_vault/rabbitmq/secret_backend.py +707 -35
- pulumi_vault/ssh/secret_backend_ca.py +101 -7
- pulumi_vault/terraformcloud/secret_backend.py +707 -28
- pulumi_vault/transit/secret_backend_key.py +49 -21
- {pulumi_vault-7.2.0a1755297899.dist-info → pulumi_vault-7.3.0a1755586140.dist-info}/METADATA +1 -1
- {pulumi_vault-7.2.0a1755297899.dist-info → pulumi_vault-7.3.0a1755586140.dist-info}/RECORD +27 -25
- {pulumi_vault-7.2.0a1755297899.dist-info → pulumi_vault-7.3.0a1755586140.dist-info}/WHEEL +0 -0
- {pulumi_vault-7.2.0a1755297899.dist-info → pulumi_vault-7.3.0a1755586140.dist-info}/top_level.txt +0 -0
@@ -33,6 +33,7 @@ class SecretsMountArgs:
|
|
33
33
|
description: Optional[pulumi.Input[_builtins.str]] = None,
|
34
34
|
elasticsearches: Optional[pulumi.Input[Sequence[pulumi.Input['SecretsMountElasticsearchArgs']]]] = None,
|
35
35
|
external_entropy_access: Optional[pulumi.Input[_builtins.bool]] = None,
|
36
|
+
force_no_cache: Optional[pulumi.Input[_builtins.bool]] = None,
|
36
37
|
hanas: Optional[pulumi.Input[Sequence[pulumi.Input['SecretsMountHanaArgs']]]] = None,
|
37
38
|
identity_token_key: Optional[pulumi.Input[_builtins.str]] = None,
|
38
39
|
influxdbs: Optional[pulumi.Input[Sequence[pulumi.Input['SecretsMountInfluxdbArgs']]]] = None,
|
@@ -76,6 +77,7 @@ class SecretsMountArgs:
|
|
76
77
|
:param pulumi.Input[Sequence[pulumi.Input['SecretsMountElasticsearchArgs']]] elasticsearches: A nested block containing configuration options for Elasticsearch connections.
|
77
78
|
*See Configuration Options for more info*
|
78
79
|
:param pulumi.Input[_builtins.bool] external_entropy_access: Boolean flag that can be explicitly set to true to enable the secrets engine to access Vault's external entropy source
|
80
|
+
:param pulumi.Input[_builtins.bool] force_no_cache: If set to true, disables caching.
|
79
81
|
:param pulumi.Input[Sequence[pulumi.Input['SecretsMountHanaArgs']]] hanas: A nested block containing configuration options for SAP HanaDB connections.
|
80
82
|
*See Configuration Options for more info*
|
81
83
|
:param pulumi.Input[_builtins.str] identity_token_key: The key to use for signing plugin workload identity tokens
|
@@ -139,6 +141,8 @@ class SecretsMountArgs:
|
|
139
141
|
pulumi.set(__self__, "elasticsearches", elasticsearches)
|
140
142
|
if external_entropy_access is not None:
|
141
143
|
pulumi.set(__self__, "external_entropy_access", external_entropy_access)
|
144
|
+
if force_no_cache is not None:
|
145
|
+
pulumi.set(__self__, "force_no_cache", force_no_cache)
|
142
146
|
if hanas is not None:
|
143
147
|
pulumi.set(__self__, "hanas", hanas)
|
144
148
|
if identity_token_key is not None:
|
@@ -337,6 +341,18 @@ class SecretsMountArgs:
|
|
337
341
|
def external_entropy_access(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
338
342
|
pulumi.set(self, "external_entropy_access", value)
|
339
343
|
|
344
|
+
@_builtins.property
|
345
|
+
@pulumi.getter(name="forceNoCache")
|
346
|
+
def force_no_cache(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
347
|
+
"""
|
348
|
+
If set to true, disables caching.
|
349
|
+
"""
|
350
|
+
return pulumi.get(self, "force_no_cache")
|
351
|
+
|
352
|
+
@force_no_cache.setter
|
353
|
+
def force_no_cache(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
354
|
+
pulumi.set(self, "force_no_cache", value)
|
355
|
+
|
340
356
|
@_builtins.property
|
341
357
|
@pulumi.getter
|
342
358
|
def hanas(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['SecretsMountHanaArgs']]]]:
|
@@ -657,6 +673,7 @@ class _SecretsMountState:
|
|
657
673
|
elasticsearches: Optional[pulumi.Input[Sequence[pulumi.Input['SecretsMountElasticsearchArgs']]]] = None,
|
658
674
|
engine_count: Optional[pulumi.Input[_builtins.int]] = None,
|
659
675
|
external_entropy_access: Optional[pulumi.Input[_builtins.bool]] = None,
|
676
|
+
force_no_cache: Optional[pulumi.Input[_builtins.bool]] = None,
|
660
677
|
hanas: Optional[pulumi.Input[Sequence[pulumi.Input['SecretsMountHanaArgs']]]] = None,
|
661
678
|
identity_token_key: Optional[pulumi.Input[_builtins.str]] = None,
|
662
679
|
influxdbs: Optional[pulumi.Input[Sequence[pulumi.Input['SecretsMountInfluxdbArgs']]]] = None,
|
@@ -702,6 +719,7 @@ class _SecretsMountState:
|
|
702
719
|
*See Configuration Options for more info*
|
703
720
|
:param pulumi.Input[_builtins.int] engine_count: The total number of database secrets engines configured.
|
704
721
|
:param pulumi.Input[_builtins.bool] external_entropy_access: Boolean flag that can be explicitly set to true to enable the secrets engine to access Vault's external entropy source
|
722
|
+
:param pulumi.Input[_builtins.bool] force_no_cache: If set to true, disables caching.
|
705
723
|
:param pulumi.Input[Sequence[pulumi.Input['SecretsMountHanaArgs']]] hanas: A nested block containing configuration options for SAP HanaDB connections.
|
706
724
|
*See Configuration Options for more info*
|
707
725
|
:param pulumi.Input[_builtins.str] identity_token_key: The key to use for signing plugin workload identity tokens
|
@@ -769,6 +787,8 @@ class _SecretsMountState:
|
|
769
787
|
pulumi.set(__self__, "engine_count", engine_count)
|
770
788
|
if external_entropy_access is not None:
|
771
789
|
pulumi.set(__self__, "external_entropy_access", external_entropy_access)
|
790
|
+
if force_no_cache is not None:
|
791
|
+
pulumi.set(__self__, "force_no_cache", force_no_cache)
|
772
792
|
if hanas is not None:
|
773
793
|
pulumi.set(__self__, "hanas", hanas)
|
774
794
|
if identity_token_key is not None:
|
@@ -981,6 +1001,18 @@ class _SecretsMountState:
|
|
981
1001
|
def external_entropy_access(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
982
1002
|
pulumi.set(self, "external_entropy_access", value)
|
983
1003
|
|
1004
|
+
@_builtins.property
|
1005
|
+
@pulumi.getter(name="forceNoCache")
|
1006
|
+
def force_no_cache(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
1007
|
+
"""
|
1008
|
+
If set to true, disables caching.
|
1009
|
+
"""
|
1010
|
+
return pulumi.get(self, "force_no_cache")
|
1011
|
+
|
1012
|
+
@force_no_cache.setter
|
1013
|
+
def force_no_cache(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
1014
|
+
pulumi.set(self, "force_no_cache", value)
|
1015
|
+
|
984
1016
|
@_builtins.property
|
985
1017
|
@pulumi.getter
|
986
1018
|
def hanas(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['SecretsMountHanaArgs']]]]:
|
@@ -1314,6 +1346,7 @@ class SecretsMount(pulumi.CustomResource):
|
|
1314
1346
|
description: Optional[pulumi.Input[_builtins.str]] = None,
|
1315
1347
|
elasticsearches: Optional[pulumi.Input[Sequence[pulumi.Input[Union['SecretsMountElasticsearchArgs', 'SecretsMountElasticsearchArgsDict']]]]] = None,
|
1316
1348
|
external_entropy_access: Optional[pulumi.Input[_builtins.bool]] = None,
|
1349
|
+
force_no_cache: Optional[pulumi.Input[_builtins.bool]] = None,
|
1317
1350
|
hanas: Optional[pulumi.Input[Sequence[pulumi.Input[Union['SecretsMountHanaArgs', 'SecretsMountHanaArgsDict']]]]] = None,
|
1318
1351
|
identity_token_key: Optional[pulumi.Input[_builtins.str]] = None,
|
1319
1352
|
influxdbs: Optional[pulumi.Input[Sequence[pulumi.Input[Union['SecretsMountInfluxdbArgs', 'SecretsMountInfluxdbArgsDict']]]]] = None,
|
@@ -1420,6 +1453,7 @@ class SecretsMount(pulumi.CustomResource):
|
|
1420
1453
|
:param pulumi.Input[Sequence[pulumi.Input[Union['SecretsMountElasticsearchArgs', 'SecretsMountElasticsearchArgsDict']]]] elasticsearches: A nested block containing configuration options for Elasticsearch connections.
|
1421
1454
|
*See Configuration Options for more info*
|
1422
1455
|
:param pulumi.Input[_builtins.bool] external_entropy_access: Boolean flag that can be explicitly set to true to enable the secrets engine to access Vault's external entropy source
|
1456
|
+
:param pulumi.Input[_builtins.bool] force_no_cache: If set to true, disables caching.
|
1423
1457
|
:param pulumi.Input[Sequence[pulumi.Input[Union['SecretsMountHanaArgs', 'SecretsMountHanaArgsDict']]]] hanas: A nested block containing configuration options for SAP HanaDB connections.
|
1424
1458
|
*See Configuration Options for more info*
|
1425
1459
|
:param pulumi.Input[_builtins.str] identity_token_key: The key to use for signing plugin workload identity tokens
|
@@ -1555,6 +1589,7 @@ class SecretsMount(pulumi.CustomResource):
|
|
1555
1589
|
description: Optional[pulumi.Input[_builtins.str]] = None,
|
1556
1590
|
elasticsearches: Optional[pulumi.Input[Sequence[pulumi.Input[Union['SecretsMountElasticsearchArgs', 'SecretsMountElasticsearchArgsDict']]]]] = None,
|
1557
1591
|
external_entropy_access: Optional[pulumi.Input[_builtins.bool]] = None,
|
1592
|
+
force_no_cache: Optional[pulumi.Input[_builtins.bool]] = None,
|
1558
1593
|
hanas: Optional[pulumi.Input[Sequence[pulumi.Input[Union['SecretsMountHanaArgs', 'SecretsMountHanaArgsDict']]]]] = None,
|
1559
1594
|
identity_token_key: Optional[pulumi.Input[_builtins.str]] = None,
|
1560
1595
|
influxdbs: Optional[pulumi.Input[Sequence[pulumi.Input[Union['SecretsMountInfluxdbArgs', 'SecretsMountInfluxdbArgsDict']]]]] = None,
|
@@ -1600,6 +1635,7 @@ class SecretsMount(pulumi.CustomResource):
|
|
1600
1635
|
__props__.__dict__["description"] = description
|
1601
1636
|
__props__.__dict__["elasticsearches"] = elasticsearches
|
1602
1637
|
__props__.__dict__["external_entropy_access"] = external_entropy_access
|
1638
|
+
__props__.__dict__["force_no_cache"] = force_no_cache
|
1603
1639
|
__props__.__dict__["hanas"] = hanas
|
1604
1640
|
__props__.__dict__["identity_token_key"] = identity_token_key
|
1605
1641
|
__props__.__dict__["influxdbs"] = influxdbs
|
@@ -1652,6 +1688,7 @@ class SecretsMount(pulumi.CustomResource):
|
|
1652
1688
|
elasticsearches: Optional[pulumi.Input[Sequence[pulumi.Input[Union['SecretsMountElasticsearchArgs', 'SecretsMountElasticsearchArgsDict']]]]] = None,
|
1653
1689
|
engine_count: Optional[pulumi.Input[_builtins.int]] = None,
|
1654
1690
|
external_entropy_access: Optional[pulumi.Input[_builtins.bool]] = None,
|
1691
|
+
force_no_cache: Optional[pulumi.Input[_builtins.bool]] = None,
|
1655
1692
|
hanas: Optional[pulumi.Input[Sequence[pulumi.Input[Union['SecretsMountHanaArgs', 'SecretsMountHanaArgsDict']]]]] = None,
|
1656
1693
|
identity_token_key: Optional[pulumi.Input[_builtins.str]] = None,
|
1657
1694
|
influxdbs: Optional[pulumi.Input[Sequence[pulumi.Input[Union['SecretsMountInfluxdbArgs', 'SecretsMountInfluxdbArgsDict']]]]] = None,
|
@@ -1702,6 +1739,7 @@ class SecretsMount(pulumi.CustomResource):
|
|
1702
1739
|
*See Configuration Options for more info*
|
1703
1740
|
:param pulumi.Input[_builtins.int] engine_count: The total number of database secrets engines configured.
|
1704
1741
|
:param pulumi.Input[_builtins.bool] external_entropy_access: Boolean flag that can be explicitly set to true to enable the secrets engine to access Vault's external entropy source
|
1742
|
+
:param pulumi.Input[_builtins.bool] force_no_cache: If set to true, disables caching.
|
1705
1743
|
:param pulumi.Input[Sequence[pulumi.Input[Union['SecretsMountHanaArgs', 'SecretsMountHanaArgsDict']]]] hanas: A nested block containing configuration options for SAP HanaDB connections.
|
1706
1744
|
*See Configuration Options for more info*
|
1707
1745
|
:param pulumi.Input[_builtins.str] identity_token_key: The key to use for signing plugin workload identity tokens
|
@@ -1760,6 +1798,7 @@ class SecretsMount(pulumi.CustomResource):
|
|
1760
1798
|
__props__.__dict__["elasticsearches"] = elasticsearches
|
1761
1799
|
__props__.__dict__["engine_count"] = engine_count
|
1762
1800
|
__props__.__dict__["external_entropy_access"] = external_entropy_access
|
1801
|
+
__props__.__dict__["force_no_cache"] = force_no_cache
|
1763
1802
|
__props__.__dict__["hanas"] = hanas
|
1764
1803
|
__props__.__dict__["identity_token_key"] = identity_token_key
|
1765
1804
|
__props__.__dict__["influxdbs"] = influxdbs
|
@@ -1896,6 +1935,14 @@ class SecretsMount(pulumi.CustomResource):
|
|
1896
1935
|
"""
|
1897
1936
|
return pulumi.get(self, "external_entropy_access")
|
1898
1937
|
|
1938
|
+
@_builtins.property
|
1939
|
+
@pulumi.getter(name="forceNoCache")
|
1940
|
+
def force_no_cache(self) -> pulumi.Output[_builtins.bool]:
|
1941
|
+
"""
|
1942
|
+
If set to true, disables caching.
|
1943
|
+
"""
|
1944
|
+
return pulumi.get(self, "force_no_cache")
|
1945
|
+
|
1899
1946
|
@_builtins.property
|
1900
1947
|
@pulumi.getter
|
1901
1948
|
def hanas(self) -> pulumi.Output[Optional[Sequence['outputs.SecretsMountHana']]]:
|