pulumi-vault 6.8.0a1750231010__py3-none-any.whl → 7.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.
- pulumi_vault/__init__.py +0 -9
- pulumi_vault/_inputs.py +88 -83
- pulumi_vault/azure/backend.py +5 -93
- pulumi_vault/config/outputs.py +52 -47
- pulumi_vault/database/_inputs.py +440 -0
- pulumi_vault/database/outputs.py +308 -0
- pulumi_vault/database/secret_backend_connection.py +14 -0
- pulumi_vault/database/secrets_mount.py +14 -0
- pulumi_vault/gcp/secret_backend.py +61 -0
- pulumi_vault/kv/_inputs.py +12 -12
- pulumi_vault/kv/outputs.py +8 -8
- pulumi_vault/kv/secret_v2.py +101 -36
- pulumi_vault/okta/auth_backend.py +0 -126
- pulumi_vault/provider.py +1 -5
- pulumi_vault/pulumi-plugin.json +1 -1
- {pulumi_vault-6.8.0a1750231010.dist-info → pulumi_vault-7.0.0.dist-info}/METADATA +1 -1
- {pulumi_vault-6.8.0a1750231010.dist-info → pulumi_vault-7.0.0.dist-info}/RECORD +19 -20
- pulumi_vault/password_policy.py +0 -318
- {pulumi_vault-6.8.0a1750231010.dist-info → pulumi_vault-7.0.0.dist-info}/WHEEL +0 -0
- {pulumi_vault-6.8.0a1750231010.dist-info → pulumi_vault-7.0.0.dist-info}/top_level.txt +0 -0
pulumi_vault/database/outputs.py
CHANGED
@@ -509,6 +509,8 @@ class SecretBackendConnectionHana(dict):
|
|
509
509
|
suggest = "max_idle_connections"
|
510
510
|
elif key == "maxOpenConnections":
|
511
511
|
suggest = "max_open_connections"
|
512
|
+
elif key == "passwordWoVersion":
|
513
|
+
suggest = "password_wo_version"
|
512
514
|
|
513
515
|
if suggest:
|
514
516
|
pulumi.log.warn(f"Key '{key}' not found in SecretBackendConnectionHana. Access the value via the '{suggest}' property getter instead.")
|
@@ -528,6 +530,7 @@ class SecretBackendConnectionHana(dict):
|
|
528
530
|
max_idle_connections: Optional[builtins.int] = None,
|
529
531
|
max_open_connections: Optional[builtins.int] = None,
|
530
532
|
password: Optional[builtins.str] = None,
|
533
|
+
password_wo_version: Optional[builtins.int] = None,
|
531
534
|
username: Optional[builtins.str] = None):
|
532
535
|
"""
|
533
536
|
:param builtins.str connection_url: Connection string to use to connect to the database.
|
@@ -536,6 +539,7 @@ class SecretBackendConnectionHana(dict):
|
|
536
539
|
:param builtins.int max_idle_connections: Maximum number of idle connections to the database.
|
537
540
|
:param builtins.int max_open_connections: Maximum number of open connections to the database.
|
538
541
|
:param builtins.str password: The root credential password used in the connection URL
|
542
|
+
:param builtins.int password_wo_version: Version counter for root credential password write-only field
|
539
543
|
:param builtins.str username: The root credential username used in the connection URL
|
540
544
|
"""
|
541
545
|
if connection_url is not None:
|
@@ -550,6 +554,8 @@ class SecretBackendConnectionHana(dict):
|
|
550
554
|
pulumi.set(__self__, "max_open_connections", max_open_connections)
|
551
555
|
if password is not None:
|
552
556
|
pulumi.set(__self__, "password", password)
|
557
|
+
if password_wo_version is not None:
|
558
|
+
pulumi.set(__self__, "password_wo_version", password_wo_version)
|
553
559
|
if username is not None:
|
554
560
|
pulumi.set(__self__, "username", username)
|
555
561
|
|
@@ -601,6 +607,14 @@ class SecretBackendConnectionHana(dict):
|
|
601
607
|
"""
|
602
608
|
return pulumi.get(self, "password")
|
603
609
|
|
610
|
+
@property
|
611
|
+
@pulumi.getter(name="passwordWoVersion")
|
612
|
+
def password_wo_version(self) -> Optional[builtins.int]:
|
613
|
+
"""
|
614
|
+
Version counter for root credential password write-only field
|
615
|
+
"""
|
616
|
+
return pulumi.get(self, "password_wo_version")
|
617
|
+
|
604
618
|
@property
|
605
619
|
@pulumi.getter
|
606
620
|
def username(self) -> Optional[builtins.str]:
|
@@ -772,6 +786,8 @@ class SecretBackendConnectionMongodb(dict):
|
|
772
786
|
suggest = "max_idle_connections"
|
773
787
|
elif key == "maxOpenConnections":
|
774
788
|
suggest = "max_open_connections"
|
789
|
+
elif key == "passwordWoVersion":
|
790
|
+
suggest = "password_wo_version"
|
775
791
|
elif key == "usernameTemplate":
|
776
792
|
suggest = "username_template"
|
777
793
|
|
@@ -792,6 +808,7 @@ class SecretBackendConnectionMongodb(dict):
|
|
792
808
|
max_idle_connections: Optional[builtins.int] = None,
|
793
809
|
max_open_connections: Optional[builtins.int] = None,
|
794
810
|
password: Optional[builtins.str] = None,
|
811
|
+
password_wo_version: Optional[builtins.int] = None,
|
795
812
|
username: Optional[builtins.str] = None,
|
796
813
|
username_template: Optional[builtins.str] = None):
|
797
814
|
"""
|
@@ -800,6 +817,7 @@ class SecretBackendConnectionMongodb(dict):
|
|
800
817
|
:param builtins.int max_idle_connections: Maximum number of idle connections to the database.
|
801
818
|
:param builtins.int max_open_connections: Maximum number of open connections to the database.
|
802
819
|
:param builtins.str password: The root credential password used in the connection URL
|
820
|
+
:param builtins.int password_wo_version: Version counter for root credential password write-only field
|
803
821
|
:param builtins.str username: The root credential username used in the connection URL
|
804
822
|
:param builtins.str username_template: Username generation template.
|
805
823
|
"""
|
@@ -813,6 +831,8 @@ class SecretBackendConnectionMongodb(dict):
|
|
813
831
|
pulumi.set(__self__, "max_open_connections", max_open_connections)
|
814
832
|
if password is not None:
|
815
833
|
pulumi.set(__self__, "password", password)
|
834
|
+
if password_wo_version is not None:
|
835
|
+
pulumi.set(__self__, "password_wo_version", password_wo_version)
|
816
836
|
if username is not None:
|
817
837
|
pulumi.set(__self__, "username", username)
|
818
838
|
if username_template is not None:
|
@@ -858,6 +878,14 @@ class SecretBackendConnectionMongodb(dict):
|
|
858
878
|
"""
|
859
879
|
return pulumi.get(self, "password")
|
860
880
|
|
881
|
+
@property
|
882
|
+
@pulumi.getter(name="passwordWoVersion")
|
883
|
+
def password_wo_version(self) -> Optional[builtins.int]:
|
884
|
+
"""
|
885
|
+
Version counter for root credential password write-only field
|
886
|
+
"""
|
887
|
+
return pulumi.get(self, "password_wo_version")
|
888
|
+
|
861
889
|
@property
|
862
890
|
@pulumi.getter
|
863
891
|
def username(self) -> Optional[builtins.str]:
|
@@ -953,6 +981,8 @@ class SecretBackendConnectionMssql(dict):
|
|
953
981
|
suggest = "max_idle_connections"
|
954
982
|
elif key == "maxOpenConnections":
|
955
983
|
suggest = "max_open_connections"
|
984
|
+
elif key == "passwordWoVersion":
|
985
|
+
suggest = "password_wo_version"
|
956
986
|
elif key == "usernameTemplate":
|
957
987
|
suggest = "username_template"
|
958
988
|
|
@@ -975,6 +1005,7 @@ class SecretBackendConnectionMssql(dict):
|
|
975
1005
|
max_idle_connections: Optional[builtins.int] = None,
|
976
1006
|
max_open_connections: Optional[builtins.int] = None,
|
977
1007
|
password: Optional[builtins.str] = None,
|
1008
|
+
password_wo_version: Optional[builtins.int] = None,
|
978
1009
|
username: Optional[builtins.str] = None,
|
979
1010
|
username_template: Optional[builtins.str] = None):
|
980
1011
|
"""
|
@@ -985,6 +1016,7 @@ class SecretBackendConnectionMssql(dict):
|
|
985
1016
|
:param builtins.int max_idle_connections: Maximum number of idle connections to the database.
|
986
1017
|
:param builtins.int max_open_connections: Maximum number of open connections to the database.
|
987
1018
|
:param builtins.str password: The root credential password used in the connection URL
|
1019
|
+
:param builtins.int password_wo_version: Version counter for root credential password write-only field
|
988
1020
|
:param builtins.str username: The root credential username used in the connection URL
|
989
1021
|
:param builtins.str username_template: Username generation template.
|
990
1022
|
"""
|
@@ -1002,6 +1034,8 @@ class SecretBackendConnectionMssql(dict):
|
|
1002
1034
|
pulumi.set(__self__, "max_open_connections", max_open_connections)
|
1003
1035
|
if password is not None:
|
1004
1036
|
pulumi.set(__self__, "password", password)
|
1037
|
+
if password_wo_version is not None:
|
1038
|
+
pulumi.set(__self__, "password_wo_version", password_wo_version)
|
1005
1039
|
if username is not None:
|
1006
1040
|
pulumi.set(__self__, "username", username)
|
1007
1041
|
if username_template is not None:
|
@@ -1063,6 +1097,14 @@ class SecretBackendConnectionMssql(dict):
|
|
1063
1097
|
"""
|
1064
1098
|
return pulumi.get(self, "password")
|
1065
1099
|
|
1100
|
+
@property
|
1101
|
+
@pulumi.getter(name="passwordWoVersion")
|
1102
|
+
def password_wo_version(self) -> Optional[builtins.int]:
|
1103
|
+
"""
|
1104
|
+
Version counter for root credential password write-only field
|
1105
|
+
"""
|
1106
|
+
return pulumi.get(self, "password_wo_version")
|
1107
|
+
|
1066
1108
|
@property
|
1067
1109
|
@pulumi.getter
|
1068
1110
|
def username(self) -> Optional[builtins.str]:
|
@@ -1095,6 +1137,8 @@ class SecretBackendConnectionMysql(dict):
|
|
1095
1137
|
suggest = "max_idle_connections"
|
1096
1138
|
elif key == "maxOpenConnections":
|
1097
1139
|
suggest = "max_open_connections"
|
1140
|
+
elif key == "passwordWoVersion":
|
1141
|
+
suggest = "password_wo_version"
|
1098
1142
|
elif key == "serviceAccountJson":
|
1099
1143
|
suggest = "service_account_json"
|
1100
1144
|
elif key == "tlsCa":
|
@@ -1122,6 +1166,7 @@ class SecretBackendConnectionMysql(dict):
|
|
1122
1166
|
max_idle_connections: Optional[builtins.int] = None,
|
1123
1167
|
max_open_connections: Optional[builtins.int] = None,
|
1124
1168
|
password: Optional[builtins.str] = None,
|
1169
|
+
password_wo_version: Optional[builtins.int] = None,
|
1125
1170
|
service_account_json: Optional[builtins.str] = None,
|
1126
1171
|
tls_ca: Optional[builtins.str] = None,
|
1127
1172
|
tls_certificate_key: Optional[builtins.str] = None,
|
@@ -1134,6 +1179,7 @@ class SecretBackendConnectionMysql(dict):
|
|
1134
1179
|
:param builtins.int max_idle_connections: Maximum number of idle connections to the database.
|
1135
1180
|
:param builtins.int max_open_connections: Maximum number of open connections to the database.
|
1136
1181
|
:param builtins.str password: The root credential password used in the connection URL
|
1182
|
+
:param builtins.int password_wo_version: Version counter for root credential password write-only field
|
1137
1183
|
:param builtins.str service_account_json: A JSON encoded credential for use with IAM authorization
|
1138
1184
|
:param builtins.str tls_ca: x509 CA file for validating the certificate presented by the MySQL server. Must be PEM encoded.
|
1139
1185
|
:param builtins.str tls_certificate_key: x509 certificate for connecting to the database. This must be a PEM encoded version of the private key and the certificate combined.
|
@@ -1152,6 +1198,8 @@ class SecretBackendConnectionMysql(dict):
|
|
1152
1198
|
pulumi.set(__self__, "max_open_connections", max_open_connections)
|
1153
1199
|
if password is not None:
|
1154
1200
|
pulumi.set(__self__, "password", password)
|
1201
|
+
if password_wo_version is not None:
|
1202
|
+
pulumi.set(__self__, "password_wo_version", password_wo_version)
|
1155
1203
|
if service_account_json is not None:
|
1156
1204
|
pulumi.set(__self__, "service_account_json", service_account_json)
|
1157
1205
|
if tls_ca is not None:
|
@@ -1211,6 +1259,14 @@ class SecretBackendConnectionMysql(dict):
|
|
1211
1259
|
"""
|
1212
1260
|
return pulumi.get(self, "password")
|
1213
1261
|
|
1262
|
+
@property
|
1263
|
+
@pulumi.getter(name="passwordWoVersion")
|
1264
|
+
def password_wo_version(self) -> Optional[builtins.int]:
|
1265
|
+
"""
|
1266
|
+
Version counter for root credential password write-only field
|
1267
|
+
"""
|
1268
|
+
return pulumi.get(self, "password_wo_version")
|
1269
|
+
|
1214
1270
|
@property
|
1215
1271
|
@pulumi.getter(name="serviceAccountJson")
|
1216
1272
|
def service_account_json(self) -> Optional[builtins.str]:
|
@@ -1267,6 +1323,8 @@ class SecretBackendConnectionMysqlAurora(dict):
|
|
1267
1323
|
suggest = "max_idle_connections"
|
1268
1324
|
elif key == "maxOpenConnections":
|
1269
1325
|
suggest = "max_open_connections"
|
1326
|
+
elif key == "passwordWoVersion":
|
1327
|
+
suggest = "password_wo_version"
|
1270
1328
|
elif key == "serviceAccountJson":
|
1271
1329
|
suggest = "service_account_json"
|
1272
1330
|
elif key == "tlsCa":
|
@@ -1294,6 +1352,7 @@ class SecretBackendConnectionMysqlAurora(dict):
|
|
1294
1352
|
max_idle_connections: Optional[builtins.int] = None,
|
1295
1353
|
max_open_connections: Optional[builtins.int] = None,
|
1296
1354
|
password: Optional[builtins.str] = None,
|
1355
|
+
password_wo_version: Optional[builtins.int] = None,
|
1297
1356
|
service_account_json: Optional[builtins.str] = None,
|
1298
1357
|
tls_ca: Optional[builtins.str] = None,
|
1299
1358
|
tls_certificate_key: Optional[builtins.str] = None,
|
@@ -1306,6 +1365,7 @@ class SecretBackendConnectionMysqlAurora(dict):
|
|
1306
1365
|
:param builtins.int max_idle_connections: Maximum number of idle connections to the database.
|
1307
1366
|
:param builtins.int max_open_connections: Maximum number of open connections to the database.
|
1308
1367
|
:param builtins.str password: The root credential password used in the connection URL
|
1368
|
+
:param builtins.int password_wo_version: Version counter for root credential password write-only field
|
1309
1369
|
:param builtins.str service_account_json: A JSON encoded credential for use with IAM authorization
|
1310
1370
|
:param builtins.str tls_ca: x509 CA file for validating the certificate presented by the MySQL server. Must be PEM encoded.
|
1311
1371
|
:param builtins.str tls_certificate_key: x509 certificate for connecting to the database. This must be a PEM encoded version of the private key and the certificate combined.
|
@@ -1324,6 +1384,8 @@ class SecretBackendConnectionMysqlAurora(dict):
|
|
1324
1384
|
pulumi.set(__self__, "max_open_connections", max_open_connections)
|
1325
1385
|
if password is not None:
|
1326
1386
|
pulumi.set(__self__, "password", password)
|
1387
|
+
if password_wo_version is not None:
|
1388
|
+
pulumi.set(__self__, "password_wo_version", password_wo_version)
|
1327
1389
|
if service_account_json is not None:
|
1328
1390
|
pulumi.set(__self__, "service_account_json", service_account_json)
|
1329
1391
|
if tls_ca is not None:
|
@@ -1383,6 +1445,14 @@ class SecretBackendConnectionMysqlAurora(dict):
|
|
1383
1445
|
"""
|
1384
1446
|
return pulumi.get(self, "password")
|
1385
1447
|
|
1448
|
+
@property
|
1449
|
+
@pulumi.getter(name="passwordWoVersion")
|
1450
|
+
def password_wo_version(self) -> Optional[builtins.int]:
|
1451
|
+
"""
|
1452
|
+
Version counter for root credential password write-only field
|
1453
|
+
"""
|
1454
|
+
return pulumi.get(self, "password_wo_version")
|
1455
|
+
|
1386
1456
|
@property
|
1387
1457
|
@pulumi.getter(name="serviceAccountJson")
|
1388
1458
|
def service_account_json(self) -> Optional[builtins.str]:
|
@@ -1439,6 +1509,8 @@ class SecretBackendConnectionMysqlLegacy(dict):
|
|
1439
1509
|
suggest = "max_idle_connections"
|
1440
1510
|
elif key == "maxOpenConnections":
|
1441
1511
|
suggest = "max_open_connections"
|
1512
|
+
elif key == "passwordWoVersion":
|
1513
|
+
suggest = "password_wo_version"
|
1442
1514
|
elif key == "serviceAccountJson":
|
1443
1515
|
suggest = "service_account_json"
|
1444
1516
|
elif key == "tlsCa":
|
@@ -1466,6 +1538,7 @@ class SecretBackendConnectionMysqlLegacy(dict):
|
|
1466
1538
|
max_idle_connections: Optional[builtins.int] = None,
|
1467
1539
|
max_open_connections: Optional[builtins.int] = None,
|
1468
1540
|
password: Optional[builtins.str] = None,
|
1541
|
+
password_wo_version: Optional[builtins.int] = None,
|
1469
1542
|
service_account_json: Optional[builtins.str] = None,
|
1470
1543
|
tls_ca: Optional[builtins.str] = None,
|
1471
1544
|
tls_certificate_key: Optional[builtins.str] = None,
|
@@ -1478,6 +1551,7 @@ class SecretBackendConnectionMysqlLegacy(dict):
|
|
1478
1551
|
:param builtins.int max_idle_connections: Maximum number of idle connections to the database.
|
1479
1552
|
:param builtins.int max_open_connections: Maximum number of open connections to the database.
|
1480
1553
|
:param builtins.str password: The root credential password used in the connection URL
|
1554
|
+
:param builtins.int password_wo_version: Version counter for root credential password write-only field
|
1481
1555
|
:param builtins.str service_account_json: A JSON encoded credential for use with IAM authorization
|
1482
1556
|
:param builtins.str tls_ca: x509 CA file for validating the certificate presented by the MySQL server. Must be PEM encoded.
|
1483
1557
|
:param builtins.str tls_certificate_key: x509 certificate for connecting to the database. This must be a PEM encoded version of the private key and the certificate combined.
|
@@ -1496,6 +1570,8 @@ class SecretBackendConnectionMysqlLegacy(dict):
|
|
1496
1570
|
pulumi.set(__self__, "max_open_connections", max_open_connections)
|
1497
1571
|
if password is not None:
|
1498
1572
|
pulumi.set(__self__, "password", password)
|
1573
|
+
if password_wo_version is not None:
|
1574
|
+
pulumi.set(__self__, "password_wo_version", password_wo_version)
|
1499
1575
|
if service_account_json is not None:
|
1500
1576
|
pulumi.set(__self__, "service_account_json", service_account_json)
|
1501
1577
|
if tls_ca is not None:
|
@@ -1555,6 +1631,14 @@ class SecretBackendConnectionMysqlLegacy(dict):
|
|
1555
1631
|
"""
|
1556
1632
|
return pulumi.get(self, "password")
|
1557
1633
|
|
1634
|
+
@property
|
1635
|
+
@pulumi.getter(name="passwordWoVersion")
|
1636
|
+
def password_wo_version(self) -> Optional[builtins.int]:
|
1637
|
+
"""
|
1638
|
+
Version counter for root credential password write-only field
|
1639
|
+
"""
|
1640
|
+
return pulumi.get(self, "password_wo_version")
|
1641
|
+
|
1558
1642
|
@property
|
1559
1643
|
@pulumi.getter(name="serviceAccountJson")
|
1560
1644
|
def service_account_json(self) -> Optional[builtins.str]:
|
@@ -1611,6 +1695,8 @@ class SecretBackendConnectionMysqlRds(dict):
|
|
1611
1695
|
suggest = "max_idle_connections"
|
1612
1696
|
elif key == "maxOpenConnections":
|
1613
1697
|
suggest = "max_open_connections"
|
1698
|
+
elif key == "passwordWoVersion":
|
1699
|
+
suggest = "password_wo_version"
|
1614
1700
|
elif key == "serviceAccountJson":
|
1615
1701
|
suggest = "service_account_json"
|
1616
1702
|
elif key == "tlsCa":
|
@@ -1638,6 +1724,7 @@ class SecretBackendConnectionMysqlRds(dict):
|
|
1638
1724
|
max_idle_connections: Optional[builtins.int] = None,
|
1639
1725
|
max_open_connections: Optional[builtins.int] = None,
|
1640
1726
|
password: Optional[builtins.str] = None,
|
1727
|
+
password_wo_version: Optional[builtins.int] = None,
|
1641
1728
|
service_account_json: Optional[builtins.str] = None,
|
1642
1729
|
tls_ca: Optional[builtins.str] = None,
|
1643
1730
|
tls_certificate_key: Optional[builtins.str] = None,
|
@@ -1650,6 +1737,7 @@ class SecretBackendConnectionMysqlRds(dict):
|
|
1650
1737
|
:param builtins.int max_idle_connections: Maximum number of idle connections to the database.
|
1651
1738
|
:param builtins.int max_open_connections: Maximum number of open connections to the database.
|
1652
1739
|
:param builtins.str password: The root credential password used in the connection URL
|
1740
|
+
:param builtins.int password_wo_version: Version counter for root credential password write-only field
|
1653
1741
|
:param builtins.str service_account_json: A JSON encoded credential for use with IAM authorization
|
1654
1742
|
:param builtins.str tls_ca: x509 CA file for validating the certificate presented by the MySQL server. Must be PEM encoded.
|
1655
1743
|
:param builtins.str tls_certificate_key: x509 certificate for connecting to the database. This must be a PEM encoded version of the private key and the certificate combined.
|
@@ -1668,6 +1756,8 @@ class SecretBackendConnectionMysqlRds(dict):
|
|
1668
1756
|
pulumi.set(__self__, "max_open_connections", max_open_connections)
|
1669
1757
|
if password is not None:
|
1670
1758
|
pulumi.set(__self__, "password", password)
|
1759
|
+
if password_wo_version is not None:
|
1760
|
+
pulumi.set(__self__, "password_wo_version", password_wo_version)
|
1671
1761
|
if service_account_json is not None:
|
1672
1762
|
pulumi.set(__self__, "service_account_json", service_account_json)
|
1673
1763
|
if tls_ca is not None:
|
@@ -1727,6 +1817,14 @@ class SecretBackendConnectionMysqlRds(dict):
|
|
1727
1817
|
"""
|
1728
1818
|
return pulumi.get(self, "password")
|
1729
1819
|
|
1820
|
+
@property
|
1821
|
+
@pulumi.getter(name="passwordWoVersion")
|
1822
|
+
def password_wo_version(self) -> Optional[builtins.int]:
|
1823
|
+
"""
|
1824
|
+
Version counter for root credential password write-only field
|
1825
|
+
"""
|
1826
|
+
return pulumi.get(self, "password_wo_version")
|
1827
|
+
|
1730
1828
|
@property
|
1731
1829
|
@pulumi.getter(name="serviceAccountJson")
|
1732
1830
|
def service_account_json(self) -> Optional[builtins.str]:
|
@@ -1783,6 +1881,8 @@ class SecretBackendConnectionOracle(dict):
|
|
1783
1881
|
suggest = "max_idle_connections"
|
1784
1882
|
elif key == "maxOpenConnections":
|
1785
1883
|
suggest = "max_open_connections"
|
1884
|
+
elif key == "passwordWoVersion":
|
1885
|
+
suggest = "password_wo_version"
|
1786
1886
|
elif key == "splitStatements":
|
1787
1887
|
suggest = "split_statements"
|
1788
1888
|
elif key == "usernameTemplate":
|
@@ -1806,6 +1906,7 @@ class SecretBackendConnectionOracle(dict):
|
|
1806
1906
|
max_idle_connections: Optional[builtins.int] = None,
|
1807
1907
|
max_open_connections: Optional[builtins.int] = None,
|
1808
1908
|
password: Optional[builtins.str] = None,
|
1909
|
+
password_wo_version: Optional[builtins.int] = None,
|
1809
1910
|
split_statements: Optional[builtins.bool] = None,
|
1810
1911
|
username: Optional[builtins.str] = None,
|
1811
1912
|
username_template: Optional[builtins.str] = None):
|
@@ -1816,6 +1917,7 @@ class SecretBackendConnectionOracle(dict):
|
|
1816
1917
|
:param builtins.int max_idle_connections: Maximum number of idle connections to the database.
|
1817
1918
|
:param builtins.int max_open_connections: Maximum number of open connections to the database.
|
1818
1919
|
:param builtins.str password: The root credential password used in the connection URL
|
1920
|
+
:param builtins.int password_wo_version: Version counter for root credential password write-only field
|
1819
1921
|
:param builtins.bool split_statements: Set to true in order to split statements after semi-colons.
|
1820
1922
|
:param builtins.str username: The root credential username used in the connection URL
|
1821
1923
|
:param builtins.str username_template: Username generation template.
|
@@ -1832,6 +1934,8 @@ class SecretBackendConnectionOracle(dict):
|
|
1832
1934
|
pulumi.set(__self__, "max_open_connections", max_open_connections)
|
1833
1935
|
if password is not None:
|
1834
1936
|
pulumi.set(__self__, "password", password)
|
1937
|
+
if password_wo_version is not None:
|
1938
|
+
pulumi.set(__self__, "password_wo_version", password_wo_version)
|
1835
1939
|
if split_statements is not None:
|
1836
1940
|
pulumi.set(__self__, "split_statements", split_statements)
|
1837
1941
|
if username is not None:
|
@@ -1887,6 +1991,14 @@ class SecretBackendConnectionOracle(dict):
|
|
1887
1991
|
"""
|
1888
1992
|
return pulumi.get(self, "password")
|
1889
1993
|
|
1994
|
+
@property
|
1995
|
+
@pulumi.getter(name="passwordWoVersion")
|
1996
|
+
def password_wo_version(self) -> Optional[builtins.int]:
|
1997
|
+
"""
|
1998
|
+
Version counter for root credential password write-only field
|
1999
|
+
"""
|
2000
|
+
return pulumi.get(self, "password_wo_version")
|
2001
|
+
|
1890
2002
|
@property
|
1891
2003
|
@pulumi.getter(name="splitStatements")
|
1892
2004
|
def split_statements(self) -> Optional[builtins.bool]:
|
@@ -1931,6 +2043,8 @@ class SecretBackendConnectionPostgresql(dict):
|
|
1931
2043
|
suggest = "max_open_connections"
|
1932
2044
|
elif key == "passwordAuthentication":
|
1933
2045
|
suggest = "password_authentication"
|
2046
|
+
elif key == "passwordWoVersion":
|
2047
|
+
suggest = "password_wo_version"
|
1934
2048
|
elif key == "privateKey":
|
1935
2049
|
suggest = "private_key"
|
1936
2050
|
elif key == "selfManaged":
|
@@ -1964,6 +2078,7 @@ class SecretBackendConnectionPostgresql(dict):
|
|
1964
2078
|
max_open_connections: Optional[builtins.int] = None,
|
1965
2079
|
password: Optional[builtins.str] = None,
|
1966
2080
|
password_authentication: Optional[builtins.str] = None,
|
2081
|
+
password_wo_version: Optional[builtins.int] = None,
|
1967
2082
|
private_key: Optional[builtins.str] = None,
|
1968
2083
|
self_managed: Optional[builtins.bool] = None,
|
1969
2084
|
service_account_json: Optional[builtins.str] = None,
|
@@ -1980,6 +2095,7 @@ class SecretBackendConnectionPostgresql(dict):
|
|
1980
2095
|
:param builtins.int max_open_connections: Maximum number of open connections to the database.
|
1981
2096
|
:param builtins.str password: The root credential password used in the connection URL
|
1982
2097
|
:param builtins.str password_authentication: When set to `scram-sha-256`, passwords will be hashed by Vault before being sent to PostgreSQL.
|
2098
|
+
:param builtins.int password_wo_version: Version counter for root credential password write-only field
|
1983
2099
|
:param builtins.str private_key: The secret key used for the x509 client certificate. Must be PEM encoded.
|
1984
2100
|
:param builtins.bool self_managed: If set, allows onboarding static roles with a rootless connection configuration.
|
1985
2101
|
:param builtins.str service_account_json: A JSON encoded credential for use with IAM authorization
|
@@ -2004,6 +2120,8 @@ class SecretBackendConnectionPostgresql(dict):
|
|
2004
2120
|
pulumi.set(__self__, "password", password)
|
2005
2121
|
if password_authentication is not None:
|
2006
2122
|
pulumi.set(__self__, "password_authentication", password_authentication)
|
2123
|
+
if password_wo_version is not None:
|
2124
|
+
pulumi.set(__self__, "password_wo_version", password_wo_version)
|
2007
2125
|
if private_key is not None:
|
2008
2126
|
pulumi.set(__self__, "private_key", private_key)
|
2009
2127
|
if self_managed is not None:
|
@@ -2083,6 +2201,14 @@ class SecretBackendConnectionPostgresql(dict):
|
|
2083
2201
|
"""
|
2084
2202
|
return pulumi.get(self, "password_authentication")
|
2085
2203
|
|
2204
|
+
@property
|
2205
|
+
@pulumi.getter(name="passwordWoVersion")
|
2206
|
+
def password_wo_version(self) -> Optional[builtins.int]:
|
2207
|
+
"""
|
2208
|
+
Version counter for root credential password write-only field
|
2209
|
+
"""
|
2210
|
+
return pulumi.get(self, "password_wo_version")
|
2211
|
+
|
2086
2212
|
@property
|
2087
2213
|
@pulumi.getter(name="privateKey")
|
2088
2214
|
def private_key(self) -> Optional[builtins.str]:
|
@@ -2316,6 +2442,8 @@ class SecretBackendConnectionRedshift(dict):
|
|
2316
2442
|
suggest = "max_idle_connections"
|
2317
2443
|
elif key == "maxOpenConnections":
|
2318
2444
|
suggest = "max_open_connections"
|
2445
|
+
elif key == "passwordWoVersion":
|
2446
|
+
suggest = "password_wo_version"
|
2319
2447
|
elif key == "usernameTemplate":
|
2320
2448
|
suggest = "username_template"
|
2321
2449
|
|
@@ -2337,6 +2465,7 @@ class SecretBackendConnectionRedshift(dict):
|
|
2337
2465
|
max_idle_connections: Optional[builtins.int] = None,
|
2338
2466
|
max_open_connections: Optional[builtins.int] = None,
|
2339
2467
|
password: Optional[builtins.str] = None,
|
2468
|
+
password_wo_version: Optional[builtins.int] = None,
|
2340
2469
|
username: Optional[builtins.str] = None,
|
2341
2470
|
username_template: Optional[builtins.str] = None):
|
2342
2471
|
"""
|
@@ -2346,6 +2475,7 @@ class SecretBackendConnectionRedshift(dict):
|
|
2346
2475
|
:param builtins.int max_idle_connections: Maximum number of idle connections to the database.
|
2347
2476
|
:param builtins.int max_open_connections: Maximum number of open connections to the database.
|
2348
2477
|
:param builtins.str password: The root credential password used in the connection URL
|
2478
|
+
:param builtins.int password_wo_version: Version counter for root credential password write-only field
|
2349
2479
|
:param builtins.str username: The root credential username used in the connection URL
|
2350
2480
|
:param builtins.str username_template: Username generation template.
|
2351
2481
|
"""
|
@@ -2361,6 +2491,8 @@ class SecretBackendConnectionRedshift(dict):
|
|
2361
2491
|
pulumi.set(__self__, "max_open_connections", max_open_connections)
|
2362
2492
|
if password is not None:
|
2363
2493
|
pulumi.set(__self__, "password", password)
|
2494
|
+
if password_wo_version is not None:
|
2495
|
+
pulumi.set(__self__, "password_wo_version", password_wo_version)
|
2364
2496
|
if username is not None:
|
2365
2497
|
pulumi.set(__self__, "username", username)
|
2366
2498
|
if username_template is not None:
|
@@ -2414,6 +2546,14 @@ class SecretBackendConnectionRedshift(dict):
|
|
2414
2546
|
"""
|
2415
2547
|
return pulumi.get(self, "password")
|
2416
2548
|
|
2549
|
+
@property
|
2550
|
+
@pulumi.getter(name="passwordWoVersion")
|
2551
|
+
def password_wo_version(self) -> Optional[builtins.int]:
|
2552
|
+
"""
|
2553
|
+
Version counter for root credential password write-only field
|
2554
|
+
"""
|
2555
|
+
return pulumi.get(self, "password_wo_version")
|
2556
|
+
|
2417
2557
|
@property
|
2418
2558
|
@pulumi.getter
|
2419
2559
|
def username(self) -> Optional[builtins.str]:
|
@@ -2444,6 +2584,8 @@ class SecretBackendConnectionSnowflake(dict):
|
|
2444
2584
|
suggest = "max_idle_connections"
|
2445
2585
|
elif key == "maxOpenConnections":
|
2446
2586
|
suggest = "max_open_connections"
|
2587
|
+
elif key == "passwordWoVersion":
|
2588
|
+
suggest = "password_wo_version"
|
2447
2589
|
elif key == "usernameTemplate":
|
2448
2590
|
suggest = "username_template"
|
2449
2591
|
|
@@ -2464,6 +2606,7 @@ class SecretBackendConnectionSnowflake(dict):
|
|
2464
2606
|
max_idle_connections: Optional[builtins.int] = None,
|
2465
2607
|
max_open_connections: Optional[builtins.int] = None,
|
2466
2608
|
password: Optional[builtins.str] = None,
|
2609
|
+
password_wo_version: Optional[builtins.int] = None,
|
2467
2610
|
username: Optional[builtins.str] = None,
|
2468
2611
|
username_template: Optional[builtins.str] = None):
|
2469
2612
|
"""
|
@@ -2472,6 +2615,7 @@ class SecretBackendConnectionSnowflake(dict):
|
|
2472
2615
|
:param builtins.int max_idle_connections: Maximum number of idle connections to the database.
|
2473
2616
|
:param builtins.int max_open_connections: Maximum number of open connections to the database.
|
2474
2617
|
:param builtins.str password: The root credential password used in the connection URL
|
2618
|
+
:param builtins.int password_wo_version: Version counter for root credential password write-only field
|
2475
2619
|
:param builtins.str username: The root credential username used in the connection URL
|
2476
2620
|
:param builtins.str username_template: Username generation template.
|
2477
2621
|
"""
|
@@ -2485,6 +2629,8 @@ class SecretBackendConnectionSnowflake(dict):
|
|
2485
2629
|
pulumi.set(__self__, "max_open_connections", max_open_connections)
|
2486
2630
|
if password is not None:
|
2487
2631
|
pulumi.set(__self__, "password", password)
|
2632
|
+
if password_wo_version is not None:
|
2633
|
+
pulumi.set(__self__, "password_wo_version", password_wo_version)
|
2488
2634
|
if username is not None:
|
2489
2635
|
pulumi.set(__self__, "username", username)
|
2490
2636
|
if username_template is not None:
|
@@ -2530,6 +2676,14 @@ class SecretBackendConnectionSnowflake(dict):
|
|
2530
2676
|
"""
|
2531
2677
|
return pulumi.get(self, "password")
|
2532
2678
|
|
2679
|
+
@property
|
2680
|
+
@pulumi.getter(name="passwordWoVersion")
|
2681
|
+
def password_wo_version(self) -> Optional[builtins.int]:
|
2682
|
+
"""
|
2683
|
+
Version counter for root credential password write-only field
|
2684
|
+
"""
|
2685
|
+
return pulumi.get(self, "password_wo_version")
|
2686
|
+
|
2533
2687
|
@property
|
2534
2688
|
@pulumi.getter
|
2535
2689
|
def username(self) -> Optional[builtins.str]:
|
@@ -3459,6 +3613,8 @@ class SecretsMountHana(dict):
|
|
3459
3613
|
suggest = "max_idle_connections"
|
3460
3614
|
elif key == "maxOpenConnections":
|
3461
3615
|
suggest = "max_open_connections"
|
3616
|
+
elif key == "passwordWoVersion":
|
3617
|
+
suggest = "password_wo_version"
|
3462
3618
|
elif key == "pluginName":
|
3463
3619
|
suggest = "plugin_name"
|
3464
3620
|
elif key == "rootRotationStatements":
|
@@ -3494,6 +3650,7 @@ class SecretsMountHana(dict):
|
|
3494
3650
|
max_idle_connections: Optional[builtins.int] = None,
|
3495
3651
|
max_open_connections: Optional[builtins.int] = None,
|
3496
3652
|
password: Optional[builtins.str] = None,
|
3653
|
+
password_wo_version: Optional[builtins.int] = None,
|
3497
3654
|
plugin_name: Optional[builtins.str] = None,
|
3498
3655
|
root_rotation_statements: Optional[Sequence[builtins.str]] = None,
|
3499
3656
|
rotation_period: Optional[builtins.int] = None,
|
@@ -3515,6 +3672,7 @@ class SecretsMountHana(dict):
|
|
3515
3672
|
:param builtins.int max_idle_connections: Maximum number of idle connections to the database.
|
3516
3673
|
:param builtins.int max_open_connections: Maximum number of open connections to the database.
|
3517
3674
|
:param builtins.str password: The root credential password used in the connection URL
|
3675
|
+
:param builtins.int password_wo_version: Version counter for root credential password write-only field
|
3518
3676
|
:param builtins.str plugin_name: Specifies the name of the plugin to use.
|
3519
3677
|
:param Sequence[builtins.str] root_rotation_statements: A list of database statements to be executed to rotate the root user's credentials.
|
3520
3678
|
:param builtins.int rotation_period: The amount of time in seconds Vault should wait before rotating the root credential.
|
@@ -3547,6 +3705,8 @@ class SecretsMountHana(dict):
|
|
3547
3705
|
pulumi.set(__self__, "max_open_connections", max_open_connections)
|
3548
3706
|
if password is not None:
|
3549
3707
|
pulumi.set(__self__, "password", password)
|
3708
|
+
if password_wo_version is not None:
|
3709
|
+
pulumi.set(__self__, "password_wo_version", password_wo_version)
|
3550
3710
|
if plugin_name is not None:
|
3551
3711
|
pulumi.set(__self__, "plugin_name", plugin_name)
|
3552
3712
|
if root_rotation_statements is not None:
|
@@ -3645,6 +3805,14 @@ class SecretsMountHana(dict):
|
|
3645
3805
|
"""
|
3646
3806
|
return pulumi.get(self, "password")
|
3647
3807
|
|
3808
|
+
@property
|
3809
|
+
@pulumi.getter(name="passwordWoVersion")
|
3810
|
+
def password_wo_version(self) -> Optional[builtins.int]:
|
3811
|
+
"""
|
3812
|
+
Version counter for root credential password write-only field
|
3813
|
+
"""
|
3814
|
+
return pulumi.get(self, "password_wo_version")
|
3815
|
+
|
3648
3816
|
@property
|
3649
3817
|
@pulumi.getter(name="pluginName")
|
3650
3818
|
def plugin_name(self) -> Optional[builtins.str]:
|
@@ -4024,6 +4192,8 @@ class SecretsMountMongodb(dict):
|
|
4024
4192
|
suggest = "max_idle_connections"
|
4025
4193
|
elif key == "maxOpenConnections":
|
4026
4194
|
suggest = "max_open_connections"
|
4195
|
+
elif key == "passwordWoVersion":
|
4196
|
+
suggest = "password_wo_version"
|
4027
4197
|
elif key == "pluginName":
|
4028
4198
|
suggest = "plugin_name"
|
4029
4199
|
elif key == "rootRotationStatements":
|
@@ -4060,6 +4230,7 @@ class SecretsMountMongodb(dict):
|
|
4060
4230
|
max_idle_connections: Optional[builtins.int] = None,
|
4061
4231
|
max_open_connections: Optional[builtins.int] = None,
|
4062
4232
|
password: Optional[builtins.str] = None,
|
4233
|
+
password_wo_version: Optional[builtins.int] = None,
|
4063
4234
|
plugin_name: Optional[builtins.str] = None,
|
4064
4235
|
root_rotation_statements: Optional[Sequence[builtins.str]] = None,
|
4065
4236
|
rotation_period: Optional[builtins.int] = None,
|
@@ -4081,6 +4252,7 @@ class SecretsMountMongodb(dict):
|
|
4081
4252
|
:param builtins.int max_idle_connections: Maximum number of idle connections to the database.
|
4082
4253
|
:param builtins.int max_open_connections: Maximum number of open connections to the database.
|
4083
4254
|
:param builtins.str password: The root credential password used in the connection URL
|
4255
|
+
:param builtins.int password_wo_version: Version counter for root credential password write-only field
|
4084
4256
|
:param builtins.str plugin_name: Specifies the name of the plugin to use.
|
4085
4257
|
:param Sequence[builtins.str] root_rotation_statements: A list of database statements to be executed to rotate the root user's credentials.
|
4086
4258
|
:param builtins.int rotation_period: The amount of time in seconds Vault should wait before rotating the root credential.
|
@@ -4112,6 +4284,8 @@ class SecretsMountMongodb(dict):
|
|
4112
4284
|
pulumi.set(__self__, "max_open_connections", max_open_connections)
|
4113
4285
|
if password is not None:
|
4114
4286
|
pulumi.set(__self__, "password", password)
|
4287
|
+
if password_wo_version is not None:
|
4288
|
+
pulumi.set(__self__, "password_wo_version", password_wo_version)
|
4115
4289
|
if plugin_name is not None:
|
4116
4290
|
pulumi.set(__self__, "plugin_name", plugin_name)
|
4117
4291
|
if root_rotation_statements is not None:
|
@@ -4204,6 +4378,14 @@ class SecretsMountMongodb(dict):
|
|
4204
4378
|
"""
|
4205
4379
|
return pulumi.get(self, "password")
|
4206
4380
|
|
4381
|
+
@property
|
4382
|
+
@pulumi.getter(name="passwordWoVersion")
|
4383
|
+
def password_wo_version(self) -> Optional[builtins.int]:
|
4384
|
+
"""
|
4385
|
+
Version counter for root credential password write-only field
|
4386
|
+
"""
|
4387
|
+
return pulumi.get(self, "password_wo_version")
|
4388
|
+
|
4207
4389
|
@property
|
4208
4390
|
@pulumi.getter(name="pluginName")
|
4209
4391
|
def plugin_name(self) -> Optional[builtins.str]:
|
@@ -4507,6 +4689,8 @@ class SecretsMountMssql(dict):
|
|
4507
4689
|
suggest = "max_idle_connections"
|
4508
4690
|
elif key == "maxOpenConnections":
|
4509
4691
|
suggest = "max_open_connections"
|
4692
|
+
elif key == "passwordWoVersion":
|
4693
|
+
suggest = "password_wo_version"
|
4510
4694
|
elif key == "pluginName":
|
4511
4695
|
suggest = "plugin_name"
|
4512
4696
|
elif key == "rootRotationStatements":
|
@@ -4545,6 +4729,7 @@ class SecretsMountMssql(dict):
|
|
4545
4729
|
max_idle_connections: Optional[builtins.int] = None,
|
4546
4730
|
max_open_connections: Optional[builtins.int] = None,
|
4547
4731
|
password: Optional[builtins.str] = None,
|
4732
|
+
password_wo_version: Optional[builtins.int] = None,
|
4548
4733
|
plugin_name: Optional[builtins.str] = None,
|
4549
4734
|
root_rotation_statements: Optional[Sequence[builtins.str]] = None,
|
4550
4735
|
rotation_period: Optional[builtins.int] = None,
|
@@ -4568,6 +4753,7 @@ class SecretsMountMssql(dict):
|
|
4568
4753
|
:param builtins.int max_idle_connections: Maximum number of idle connections to the database.
|
4569
4754
|
:param builtins.int max_open_connections: Maximum number of open connections to the database.
|
4570
4755
|
:param builtins.str password: The root credential password used in the connection URL
|
4756
|
+
:param builtins.int password_wo_version: Version counter for root credential password write-only field
|
4571
4757
|
:param builtins.str plugin_name: Specifies the name of the plugin to use.
|
4572
4758
|
:param Sequence[builtins.str] root_rotation_statements: A list of database statements to be executed to rotate the root user's credentials.
|
4573
4759
|
:param builtins.int rotation_period: The amount of time in seconds Vault should wait before rotating the root credential.
|
@@ -4603,6 +4789,8 @@ class SecretsMountMssql(dict):
|
|
4603
4789
|
pulumi.set(__self__, "max_open_connections", max_open_connections)
|
4604
4790
|
if password is not None:
|
4605
4791
|
pulumi.set(__self__, "password", password)
|
4792
|
+
if password_wo_version is not None:
|
4793
|
+
pulumi.set(__self__, "password_wo_version", password_wo_version)
|
4606
4794
|
if plugin_name is not None:
|
4607
4795
|
pulumi.set(__self__, "plugin_name", plugin_name)
|
4608
4796
|
if root_rotation_statements is not None:
|
@@ -4711,6 +4899,14 @@ class SecretsMountMssql(dict):
|
|
4711
4899
|
"""
|
4712
4900
|
return pulumi.get(self, "password")
|
4713
4901
|
|
4902
|
+
@property
|
4903
|
+
@pulumi.getter(name="passwordWoVersion")
|
4904
|
+
def password_wo_version(self) -> Optional[builtins.int]:
|
4905
|
+
"""
|
4906
|
+
Version counter for root credential password write-only field
|
4907
|
+
"""
|
4908
|
+
return pulumi.get(self, "password_wo_version")
|
4909
|
+
|
4714
4910
|
@property
|
4715
4911
|
@pulumi.getter(name="pluginName")
|
4716
4912
|
def plugin_name(self) -> Optional[builtins.str]:
|
@@ -4800,6 +4996,8 @@ class SecretsMountMysql(dict):
|
|
4800
4996
|
suggest = "max_idle_connections"
|
4801
4997
|
elif key == "maxOpenConnections":
|
4802
4998
|
suggest = "max_open_connections"
|
4999
|
+
elif key == "passwordWoVersion":
|
5000
|
+
suggest = "password_wo_version"
|
4803
5001
|
elif key == "pluginName":
|
4804
5002
|
suggest = "plugin_name"
|
4805
5003
|
elif key == "rootRotationStatements":
|
@@ -4843,6 +5041,7 @@ class SecretsMountMysql(dict):
|
|
4843
5041
|
max_idle_connections: Optional[builtins.int] = None,
|
4844
5042
|
max_open_connections: Optional[builtins.int] = None,
|
4845
5043
|
password: Optional[builtins.str] = None,
|
5044
|
+
password_wo_version: Optional[builtins.int] = None,
|
4846
5045
|
plugin_name: Optional[builtins.str] = None,
|
4847
5046
|
root_rotation_statements: Optional[Sequence[builtins.str]] = None,
|
4848
5047
|
rotation_period: Optional[builtins.int] = None,
|
@@ -4868,6 +5067,7 @@ class SecretsMountMysql(dict):
|
|
4868
5067
|
:param builtins.int max_idle_connections: Maximum number of idle connections to the database.
|
4869
5068
|
:param builtins.int max_open_connections: Maximum number of open connections to the database.
|
4870
5069
|
:param builtins.str password: The root credential password used in the connection URL
|
5070
|
+
:param builtins.int password_wo_version: Version counter for root credential password write-only field
|
4871
5071
|
:param builtins.str plugin_name: Specifies the name of the plugin to use.
|
4872
5072
|
:param Sequence[builtins.str] root_rotation_statements: A list of database statements to be executed to rotate the root user's credentials.
|
4873
5073
|
:param builtins.int rotation_period: The amount of time in seconds Vault should wait before rotating the root credential.
|
@@ -4904,6 +5104,8 @@ class SecretsMountMysql(dict):
|
|
4904
5104
|
pulumi.set(__self__, "max_open_connections", max_open_connections)
|
4905
5105
|
if password is not None:
|
4906
5106
|
pulumi.set(__self__, "password", password)
|
5107
|
+
if password_wo_version is not None:
|
5108
|
+
pulumi.set(__self__, "password_wo_version", password_wo_version)
|
4907
5109
|
if plugin_name is not None:
|
4908
5110
|
pulumi.set(__self__, "plugin_name", plugin_name)
|
4909
5111
|
if root_rotation_statements is not None:
|
@@ -5010,6 +5212,14 @@ class SecretsMountMysql(dict):
|
|
5010
5212
|
"""
|
5011
5213
|
return pulumi.get(self, "password")
|
5012
5214
|
|
5215
|
+
@property
|
5216
|
+
@pulumi.getter(name="passwordWoVersion")
|
5217
|
+
def password_wo_version(self) -> Optional[builtins.int]:
|
5218
|
+
"""
|
5219
|
+
Version counter for root credential password write-only field
|
5220
|
+
"""
|
5221
|
+
return pulumi.get(self, "password_wo_version")
|
5222
|
+
|
5013
5223
|
@property
|
5014
5224
|
@pulumi.getter(name="pluginName")
|
5015
5225
|
def plugin_name(self) -> Optional[builtins.str]:
|
@@ -5123,6 +5333,8 @@ class SecretsMountMysqlAurora(dict):
|
|
5123
5333
|
suggest = "max_idle_connections"
|
5124
5334
|
elif key == "maxOpenConnections":
|
5125
5335
|
suggest = "max_open_connections"
|
5336
|
+
elif key == "passwordWoVersion":
|
5337
|
+
suggest = "password_wo_version"
|
5126
5338
|
elif key == "pluginName":
|
5127
5339
|
suggest = "plugin_name"
|
5128
5340
|
elif key == "rootRotationStatements":
|
@@ -5166,6 +5378,7 @@ class SecretsMountMysqlAurora(dict):
|
|
5166
5378
|
max_idle_connections: Optional[builtins.int] = None,
|
5167
5379
|
max_open_connections: Optional[builtins.int] = None,
|
5168
5380
|
password: Optional[builtins.str] = None,
|
5381
|
+
password_wo_version: Optional[builtins.int] = None,
|
5169
5382
|
plugin_name: Optional[builtins.str] = None,
|
5170
5383
|
root_rotation_statements: Optional[Sequence[builtins.str]] = None,
|
5171
5384
|
rotation_period: Optional[builtins.int] = None,
|
@@ -5191,6 +5404,7 @@ class SecretsMountMysqlAurora(dict):
|
|
5191
5404
|
:param builtins.int max_idle_connections: Maximum number of idle connections to the database.
|
5192
5405
|
:param builtins.int max_open_connections: Maximum number of open connections to the database.
|
5193
5406
|
:param builtins.str password: The root credential password used in the connection URL
|
5407
|
+
:param builtins.int password_wo_version: Version counter for root credential password write-only field
|
5194
5408
|
:param builtins.str plugin_name: Specifies the name of the plugin to use.
|
5195
5409
|
:param Sequence[builtins.str] root_rotation_statements: A list of database statements to be executed to rotate the root user's credentials.
|
5196
5410
|
:param builtins.int rotation_period: The amount of time in seconds Vault should wait before rotating the root credential.
|
@@ -5227,6 +5441,8 @@ class SecretsMountMysqlAurora(dict):
|
|
5227
5441
|
pulumi.set(__self__, "max_open_connections", max_open_connections)
|
5228
5442
|
if password is not None:
|
5229
5443
|
pulumi.set(__self__, "password", password)
|
5444
|
+
if password_wo_version is not None:
|
5445
|
+
pulumi.set(__self__, "password_wo_version", password_wo_version)
|
5230
5446
|
if plugin_name is not None:
|
5231
5447
|
pulumi.set(__self__, "plugin_name", plugin_name)
|
5232
5448
|
if root_rotation_statements is not None:
|
@@ -5333,6 +5549,14 @@ class SecretsMountMysqlAurora(dict):
|
|
5333
5549
|
"""
|
5334
5550
|
return pulumi.get(self, "password")
|
5335
5551
|
|
5552
|
+
@property
|
5553
|
+
@pulumi.getter(name="passwordWoVersion")
|
5554
|
+
def password_wo_version(self) -> Optional[builtins.int]:
|
5555
|
+
"""
|
5556
|
+
Version counter for root credential password write-only field
|
5557
|
+
"""
|
5558
|
+
return pulumi.get(self, "password_wo_version")
|
5559
|
+
|
5336
5560
|
@property
|
5337
5561
|
@pulumi.getter(name="pluginName")
|
5338
5562
|
def plugin_name(self) -> Optional[builtins.str]:
|
@@ -5446,6 +5670,8 @@ class SecretsMountMysqlLegacy(dict):
|
|
5446
5670
|
suggest = "max_idle_connections"
|
5447
5671
|
elif key == "maxOpenConnections":
|
5448
5672
|
suggest = "max_open_connections"
|
5673
|
+
elif key == "passwordWoVersion":
|
5674
|
+
suggest = "password_wo_version"
|
5449
5675
|
elif key == "pluginName":
|
5450
5676
|
suggest = "plugin_name"
|
5451
5677
|
elif key == "rootRotationStatements":
|
@@ -5489,6 +5715,7 @@ class SecretsMountMysqlLegacy(dict):
|
|
5489
5715
|
max_idle_connections: Optional[builtins.int] = None,
|
5490
5716
|
max_open_connections: Optional[builtins.int] = None,
|
5491
5717
|
password: Optional[builtins.str] = None,
|
5718
|
+
password_wo_version: Optional[builtins.int] = None,
|
5492
5719
|
plugin_name: Optional[builtins.str] = None,
|
5493
5720
|
root_rotation_statements: Optional[Sequence[builtins.str]] = None,
|
5494
5721
|
rotation_period: Optional[builtins.int] = None,
|
@@ -5514,6 +5741,7 @@ class SecretsMountMysqlLegacy(dict):
|
|
5514
5741
|
:param builtins.int max_idle_connections: Maximum number of idle connections to the database.
|
5515
5742
|
:param builtins.int max_open_connections: Maximum number of open connections to the database.
|
5516
5743
|
:param builtins.str password: The root credential password used in the connection URL
|
5744
|
+
:param builtins.int password_wo_version: Version counter for root credential password write-only field
|
5517
5745
|
:param builtins.str plugin_name: Specifies the name of the plugin to use.
|
5518
5746
|
:param Sequence[builtins.str] root_rotation_statements: A list of database statements to be executed to rotate the root user's credentials.
|
5519
5747
|
:param builtins.int rotation_period: The amount of time in seconds Vault should wait before rotating the root credential.
|
@@ -5550,6 +5778,8 @@ class SecretsMountMysqlLegacy(dict):
|
|
5550
5778
|
pulumi.set(__self__, "max_open_connections", max_open_connections)
|
5551
5779
|
if password is not None:
|
5552
5780
|
pulumi.set(__self__, "password", password)
|
5781
|
+
if password_wo_version is not None:
|
5782
|
+
pulumi.set(__self__, "password_wo_version", password_wo_version)
|
5553
5783
|
if plugin_name is not None:
|
5554
5784
|
pulumi.set(__self__, "plugin_name", plugin_name)
|
5555
5785
|
if root_rotation_statements is not None:
|
@@ -5656,6 +5886,14 @@ class SecretsMountMysqlLegacy(dict):
|
|
5656
5886
|
"""
|
5657
5887
|
return pulumi.get(self, "password")
|
5658
5888
|
|
5889
|
+
@property
|
5890
|
+
@pulumi.getter(name="passwordWoVersion")
|
5891
|
+
def password_wo_version(self) -> Optional[builtins.int]:
|
5892
|
+
"""
|
5893
|
+
Version counter for root credential password write-only field
|
5894
|
+
"""
|
5895
|
+
return pulumi.get(self, "password_wo_version")
|
5896
|
+
|
5659
5897
|
@property
|
5660
5898
|
@pulumi.getter(name="pluginName")
|
5661
5899
|
def plugin_name(self) -> Optional[builtins.str]:
|
@@ -5769,6 +6007,8 @@ class SecretsMountMysqlRd(dict):
|
|
5769
6007
|
suggest = "max_idle_connections"
|
5770
6008
|
elif key == "maxOpenConnections":
|
5771
6009
|
suggest = "max_open_connections"
|
6010
|
+
elif key == "passwordWoVersion":
|
6011
|
+
suggest = "password_wo_version"
|
5772
6012
|
elif key == "pluginName":
|
5773
6013
|
suggest = "plugin_name"
|
5774
6014
|
elif key == "rootRotationStatements":
|
@@ -5812,6 +6052,7 @@ class SecretsMountMysqlRd(dict):
|
|
5812
6052
|
max_idle_connections: Optional[builtins.int] = None,
|
5813
6053
|
max_open_connections: Optional[builtins.int] = None,
|
5814
6054
|
password: Optional[builtins.str] = None,
|
6055
|
+
password_wo_version: Optional[builtins.int] = None,
|
5815
6056
|
plugin_name: Optional[builtins.str] = None,
|
5816
6057
|
root_rotation_statements: Optional[Sequence[builtins.str]] = None,
|
5817
6058
|
rotation_period: Optional[builtins.int] = None,
|
@@ -5837,6 +6078,7 @@ class SecretsMountMysqlRd(dict):
|
|
5837
6078
|
:param builtins.int max_idle_connections: Maximum number of idle connections to the database.
|
5838
6079
|
:param builtins.int max_open_connections: Maximum number of open connections to the database.
|
5839
6080
|
:param builtins.str password: The root credential password used in the connection URL
|
6081
|
+
:param builtins.int password_wo_version: Version counter for root credential password write-only field
|
5840
6082
|
:param builtins.str plugin_name: Specifies the name of the plugin to use.
|
5841
6083
|
:param Sequence[builtins.str] root_rotation_statements: A list of database statements to be executed to rotate the root user's credentials.
|
5842
6084
|
:param builtins.int rotation_period: The amount of time in seconds Vault should wait before rotating the root credential.
|
@@ -5873,6 +6115,8 @@ class SecretsMountMysqlRd(dict):
|
|
5873
6115
|
pulumi.set(__self__, "max_open_connections", max_open_connections)
|
5874
6116
|
if password is not None:
|
5875
6117
|
pulumi.set(__self__, "password", password)
|
6118
|
+
if password_wo_version is not None:
|
6119
|
+
pulumi.set(__self__, "password_wo_version", password_wo_version)
|
5876
6120
|
if plugin_name is not None:
|
5877
6121
|
pulumi.set(__self__, "plugin_name", plugin_name)
|
5878
6122
|
if root_rotation_statements is not None:
|
@@ -5979,6 +6223,14 @@ class SecretsMountMysqlRd(dict):
|
|
5979
6223
|
"""
|
5980
6224
|
return pulumi.get(self, "password")
|
5981
6225
|
|
6226
|
+
@property
|
6227
|
+
@pulumi.getter(name="passwordWoVersion")
|
6228
|
+
def password_wo_version(self) -> Optional[builtins.int]:
|
6229
|
+
"""
|
6230
|
+
Version counter for root credential password write-only field
|
6231
|
+
"""
|
6232
|
+
return pulumi.get(self, "password_wo_version")
|
6233
|
+
|
5982
6234
|
@property
|
5983
6235
|
@pulumi.getter(name="pluginName")
|
5984
6236
|
def plugin_name(self) -> Optional[builtins.str]:
|
@@ -6092,6 +6344,8 @@ class SecretsMountOracle(dict):
|
|
6092
6344
|
suggest = "max_idle_connections"
|
6093
6345
|
elif key == "maxOpenConnections":
|
6094
6346
|
suggest = "max_open_connections"
|
6347
|
+
elif key == "passwordWoVersion":
|
6348
|
+
suggest = "password_wo_version"
|
6095
6349
|
elif key == "pluginName":
|
6096
6350
|
suggest = "plugin_name"
|
6097
6351
|
elif key == "rootRotationStatements":
|
@@ -6131,6 +6385,7 @@ class SecretsMountOracle(dict):
|
|
6131
6385
|
max_idle_connections: Optional[builtins.int] = None,
|
6132
6386
|
max_open_connections: Optional[builtins.int] = None,
|
6133
6387
|
password: Optional[builtins.str] = None,
|
6388
|
+
password_wo_version: Optional[builtins.int] = None,
|
6134
6389
|
plugin_name: Optional[builtins.str] = None,
|
6135
6390
|
root_rotation_statements: Optional[Sequence[builtins.str]] = None,
|
6136
6391
|
rotation_period: Optional[builtins.int] = None,
|
@@ -6154,6 +6409,7 @@ class SecretsMountOracle(dict):
|
|
6154
6409
|
:param builtins.int max_idle_connections: Maximum number of idle connections to the database.
|
6155
6410
|
:param builtins.int max_open_connections: Maximum number of open connections to the database.
|
6156
6411
|
:param builtins.str password: The root credential password used in the connection URL
|
6412
|
+
:param builtins.int password_wo_version: Version counter for root credential password write-only field
|
6157
6413
|
:param builtins.str plugin_name: Specifies the name of the plugin to use.
|
6158
6414
|
:param Sequence[builtins.str] root_rotation_statements: A list of database statements to be executed to rotate the root user's credentials.
|
6159
6415
|
:param builtins.int rotation_period: The amount of time in seconds Vault should wait before rotating the root credential.
|
@@ -6188,6 +6444,8 @@ class SecretsMountOracle(dict):
|
|
6188
6444
|
pulumi.set(__self__, "max_open_connections", max_open_connections)
|
6189
6445
|
if password is not None:
|
6190
6446
|
pulumi.set(__self__, "password", password)
|
6447
|
+
if password_wo_version is not None:
|
6448
|
+
pulumi.set(__self__, "password_wo_version", password_wo_version)
|
6191
6449
|
if plugin_name is not None:
|
6192
6450
|
pulumi.set(__self__, "plugin_name", plugin_name)
|
6193
6451
|
if root_rotation_statements is not None:
|
@@ -6290,6 +6548,14 @@ class SecretsMountOracle(dict):
|
|
6290
6548
|
"""
|
6291
6549
|
return pulumi.get(self, "password")
|
6292
6550
|
|
6551
|
+
@property
|
6552
|
+
@pulumi.getter(name="passwordWoVersion")
|
6553
|
+
def password_wo_version(self) -> Optional[builtins.int]:
|
6554
|
+
"""
|
6555
|
+
Version counter for root credential password write-only field
|
6556
|
+
"""
|
6557
|
+
return pulumi.get(self, "password_wo_version")
|
6558
|
+
|
6293
6559
|
@property
|
6294
6560
|
@pulumi.getter(name="pluginName")
|
6295
6561
|
def plugin_name(self) -> Optional[builtins.str]:
|
@@ -6391,6 +6657,8 @@ class SecretsMountPostgresql(dict):
|
|
6391
6657
|
suggest = "max_open_connections"
|
6392
6658
|
elif key == "passwordAuthentication":
|
6393
6659
|
suggest = "password_authentication"
|
6660
|
+
elif key == "passwordWoVersion":
|
6661
|
+
suggest = "password_wo_version"
|
6394
6662
|
elif key == "pluginName":
|
6395
6663
|
suggest = "plugin_name"
|
6396
6664
|
elif key == "privateKey":
|
@@ -6440,6 +6708,7 @@ class SecretsMountPostgresql(dict):
|
|
6440
6708
|
max_open_connections: Optional[builtins.int] = None,
|
6441
6709
|
password: Optional[builtins.str] = None,
|
6442
6710
|
password_authentication: Optional[builtins.str] = None,
|
6711
|
+
password_wo_version: Optional[builtins.int] = None,
|
6443
6712
|
plugin_name: Optional[builtins.str] = None,
|
6444
6713
|
private_key: Optional[builtins.str] = None,
|
6445
6714
|
root_rotation_statements: Optional[Sequence[builtins.str]] = None,
|
@@ -6469,6 +6738,7 @@ class SecretsMountPostgresql(dict):
|
|
6469
6738
|
:param builtins.int max_open_connections: Maximum number of open connections to the database.
|
6470
6739
|
:param builtins.str password: The root credential password used in the connection URL
|
6471
6740
|
:param builtins.str password_authentication: When set to `scram-sha-256`, passwords will be hashed by Vault before being sent to PostgreSQL.
|
6741
|
+
:param builtins.int password_wo_version: Version counter for root credential password write-only field
|
6472
6742
|
:param builtins.str plugin_name: Specifies the name of the plugin to use.
|
6473
6743
|
:param builtins.str private_key: The secret key used for the x509 client certificate. Must be PEM encoded.
|
6474
6744
|
:param Sequence[builtins.str] root_rotation_statements: A list of database statements to be executed to rotate the root user's credentials.
|
@@ -6511,6 +6781,8 @@ class SecretsMountPostgresql(dict):
|
|
6511
6781
|
pulumi.set(__self__, "password", password)
|
6512
6782
|
if password_authentication is not None:
|
6513
6783
|
pulumi.set(__self__, "password_authentication", password_authentication)
|
6784
|
+
if password_wo_version is not None:
|
6785
|
+
pulumi.set(__self__, "password_wo_version", password_wo_version)
|
6514
6786
|
if plugin_name is not None:
|
6515
6787
|
pulumi.set(__self__, "plugin_name", plugin_name)
|
6516
6788
|
if private_key is not None:
|
@@ -6637,6 +6909,14 @@ class SecretsMountPostgresql(dict):
|
|
6637
6909
|
"""
|
6638
6910
|
return pulumi.get(self, "password_authentication")
|
6639
6911
|
|
6912
|
+
@property
|
6913
|
+
@pulumi.getter(name="passwordWoVersion")
|
6914
|
+
def password_wo_version(self) -> Optional[builtins.int]:
|
6915
|
+
"""
|
6916
|
+
Version counter for root credential password write-only field
|
6917
|
+
"""
|
6918
|
+
return pulumi.get(self, "password_wo_version")
|
6919
|
+
|
6640
6920
|
@property
|
6641
6921
|
@pulumi.getter(name="pluginName")
|
6642
6922
|
def plugin_name(self) -> Optional[builtins.str]:
|
@@ -7244,6 +7524,8 @@ class SecretsMountRedshift(dict):
|
|
7244
7524
|
suggest = "max_idle_connections"
|
7245
7525
|
elif key == "maxOpenConnections":
|
7246
7526
|
suggest = "max_open_connections"
|
7527
|
+
elif key == "passwordWoVersion":
|
7528
|
+
suggest = "password_wo_version"
|
7247
7529
|
elif key == "pluginName":
|
7248
7530
|
suggest = "plugin_name"
|
7249
7531
|
elif key == "rootRotationStatements":
|
@@ -7281,6 +7563,7 @@ class SecretsMountRedshift(dict):
|
|
7281
7563
|
max_idle_connections: Optional[builtins.int] = None,
|
7282
7564
|
max_open_connections: Optional[builtins.int] = None,
|
7283
7565
|
password: Optional[builtins.str] = None,
|
7566
|
+
password_wo_version: Optional[builtins.int] = None,
|
7284
7567
|
plugin_name: Optional[builtins.str] = None,
|
7285
7568
|
root_rotation_statements: Optional[Sequence[builtins.str]] = None,
|
7286
7569
|
rotation_period: Optional[builtins.int] = None,
|
@@ -7303,6 +7586,7 @@ class SecretsMountRedshift(dict):
|
|
7303
7586
|
:param builtins.int max_idle_connections: Maximum number of idle connections to the database.
|
7304
7587
|
:param builtins.int max_open_connections: Maximum number of open connections to the database.
|
7305
7588
|
:param builtins.str password: The root credential password used in the connection URL
|
7589
|
+
:param builtins.int password_wo_version: Version counter for root credential password write-only field
|
7306
7590
|
:param builtins.str plugin_name: Specifies the name of the plugin to use.
|
7307
7591
|
:param Sequence[builtins.str] root_rotation_statements: A list of database statements to be executed to rotate the root user's credentials.
|
7308
7592
|
:param builtins.int rotation_period: The amount of time in seconds Vault should wait before rotating the root credential.
|
@@ -7336,6 +7620,8 @@ class SecretsMountRedshift(dict):
|
|
7336
7620
|
pulumi.set(__self__, "max_open_connections", max_open_connections)
|
7337
7621
|
if password is not None:
|
7338
7622
|
pulumi.set(__self__, "password", password)
|
7623
|
+
if password_wo_version is not None:
|
7624
|
+
pulumi.set(__self__, "password_wo_version", password_wo_version)
|
7339
7625
|
if plugin_name is not None:
|
7340
7626
|
pulumi.set(__self__, "plugin_name", plugin_name)
|
7341
7627
|
if root_rotation_statements is not None:
|
@@ -7436,6 +7722,14 @@ class SecretsMountRedshift(dict):
|
|
7436
7722
|
"""
|
7437
7723
|
return pulumi.get(self, "password")
|
7438
7724
|
|
7725
|
+
@property
|
7726
|
+
@pulumi.getter(name="passwordWoVersion")
|
7727
|
+
def password_wo_version(self) -> Optional[builtins.int]:
|
7728
|
+
"""
|
7729
|
+
Version counter for root credential password write-only field
|
7730
|
+
"""
|
7731
|
+
return pulumi.get(self, "password_wo_version")
|
7732
|
+
|
7439
7733
|
@property
|
7440
7734
|
@pulumi.getter(name="pluginName")
|
7441
7735
|
def plugin_name(self) -> Optional[builtins.str]:
|
@@ -7523,6 +7817,8 @@ class SecretsMountSnowflake(dict):
|
|
7523
7817
|
suggest = "max_idle_connections"
|
7524
7818
|
elif key == "maxOpenConnections":
|
7525
7819
|
suggest = "max_open_connections"
|
7820
|
+
elif key == "passwordWoVersion":
|
7821
|
+
suggest = "password_wo_version"
|
7526
7822
|
elif key == "pluginName":
|
7527
7823
|
suggest = "plugin_name"
|
7528
7824
|
elif key == "rootRotationStatements":
|
@@ -7559,6 +7855,7 @@ class SecretsMountSnowflake(dict):
|
|
7559
7855
|
max_idle_connections: Optional[builtins.int] = None,
|
7560
7856
|
max_open_connections: Optional[builtins.int] = None,
|
7561
7857
|
password: Optional[builtins.str] = None,
|
7858
|
+
password_wo_version: Optional[builtins.int] = None,
|
7562
7859
|
plugin_name: Optional[builtins.str] = None,
|
7563
7860
|
root_rotation_statements: Optional[Sequence[builtins.str]] = None,
|
7564
7861
|
rotation_period: Optional[builtins.int] = None,
|
@@ -7580,6 +7877,7 @@ class SecretsMountSnowflake(dict):
|
|
7580
7877
|
:param builtins.int max_idle_connections: Maximum number of idle connections to the database.
|
7581
7878
|
:param builtins.int max_open_connections: Maximum number of open connections to the database.
|
7582
7879
|
:param builtins.str password: The root credential password used in the connection URL
|
7880
|
+
:param builtins.int password_wo_version: Version counter for root credential password write-only field
|
7583
7881
|
:param builtins.str plugin_name: Specifies the name of the plugin to use.
|
7584
7882
|
:param Sequence[builtins.str] root_rotation_statements: A list of database statements to be executed to rotate the root user's credentials.
|
7585
7883
|
:param builtins.int rotation_period: The amount of time in seconds Vault should wait before rotating the root credential.
|
@@ -7611,6 +7909,8 @@ class SecretsMountSnowflake(dict):
|
|
7611
7909
|
pulumi.set(__self__, "max_open_connections", max_open_connections)
|
7612
7910
|
if password is not None:
|
7613
7911
|
pulumi.set(__self__, "password", password)
|
7912
|
+
if password_wo_version is not None:
|
7913
|
+
pulumi.set(__self__, "password_wo_version", password_wo_version)
|
7614
7914
|
if plugin_name is not None:
|
7615
7915
|
pulumi.set(__self__, "plugin_name", plugin_name)
|
7616
7916
|
if root_rotation_statements is not None:
|
@@ -7703,6 +8003,14 @@ class SecretsMountSnowflake(dict):
|
|
7703
8003
|
"""
|
7704
8004
|
return pulumi.get(self, "password")
|
7705
8005
|
|
8006
|
+
@property
|
8007
|
+
@pulumi.getter(name="passwordWoVersion")
|
8008
|
+
def password_wo_version(self) -> Optional[builtins.int]:
|
8009
|
+
"""
|
8010
|
+
Version counter for root credential password write-only field
|
8011
|
+
"""
|
8012
|
+
return pulumi.get(self, "password_wo_version")
|
8013
|
+
|
7706
8014
|
@property
|
7707
8015
|
@pulumi.getter(name="pluginName")
|
7708
8016
|
def plugin_name(self) -> Optional[builtins.str]:
|