@pulumi/vault 7.0.0 → 7.1.0
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.
- package/database/secretBackendConnection.d.ts +5 -0
- package/database/secretBackendConnection.js +5 -0
- package/database/secretBackendConnection.js.map +1 -1
- package/index.d.ts +3 -0
- package/index.js +7 -2
- package/index.js.map +1 -1
- package/package.json +2 -2
- package/pkisecret/backendConfigScep.d.ts +224 -0
- package/pkisecret/backendConfigScep.js +119 -0
- package/pkisecret/backendConfigScep.js.map +1 -0
- package/pkisecret/getBackendConfigScep.d.ts +115 -0
- package/pkisecret/getBackendConfigScep.js +58 -0
- package/pkisecret/getBackendConfigScep.js.map +1 -0
- package/pkisecret/index.d.ts +6 -0
- package/pkisecret/index.js +9 -1
- package/pkisecret/index.js.map +1 -1
- package/pkisecret/secretBackendRootSignIntermediate.d.ts +18 -6
- package/pkisecret/secretBackendRootSignIntermediate.js +2 -0
- package/pkisecret/secretBackendRootSignIntermediate.js.map +1 -1
- package/quotaRateLimit.d.ts +48 -0
- package/quotaRateLimit.js +4 -0
- package/quotaRateLimit.js.map +1 -1
- package/scepAuthBackendRole.d.ts +239 -0
- package/scepAuthBackendRole.js +103 -0
- package/scepAuthBackendRole.js.map +1 -0
- package/transit/getCmac.d.ts +114 -0
- package/transit/getCmac.js +72 -0
- package/transit/getCmac.js.map +1 -0
- package/transit/getVerify.d.ts +3 -0
- package/transit/getVerify.js +2 -0
- package/transit/getVerify.js.map +1 -1
- package/transit/index.d.ts +3 -0
- package/transit/index.js +4 -1
- package/transit/index.js.map +1 -1
- package/types/input.d.ts +36 -2
- package/types/output.d.ts +60 -4
package/types/input.d.ts
CHANGED
|
@@ -1270,12 +1270,18 @@ export declare namespace database {
|
|
|
1270
1270
|
maxOpenConnections?: pulumi.Input<number>;
|
|
1271
1271
|
/**
|
|
1272
1272
|
* The root credential password used in the connection URL
|
|
1273
|
+
*
|
|
1274
|
+
* @deprecated Snowflake is ending support for single-factor password authentication by November 2025. Refer to the documentation for more information on migrating to key-pair authentication.
|
|
1273
1275
|
*/
|
|
1274
1276
|
password?: pulumi.Input<string>;
|
|
1275
1277
|
/**
|
|
1276
1278
|
* Version counter for root credential password write-only field
|
|
1277
1279
|
*/
|
|
1278
1280
|
passwordWoVersion?: pulumi.Input<number>;
|
|
1281
|
+
/**
|
|
1282
|
+
* Version counter for the private key key-pair credentials write-only field
|
|
1283
|
+
*/
|
|
1284
|
+
privateKeyWoVersion?: pulumi.Input<number>;
|
|
1279
1285
|
/**
|
|
1280
1286
|
* The root credential username used in the connection URL
|
|
1281
1287
|
*/
|
|
@@ -2857,6 +2863,8 @@ export declare namespace database {
|
|
|
2857
2863
|
name: pulumi.Input<string>;
|
|
2858
2864
|
/**
|
|
2859
2865
|
* The root credential password used in the connection URL
|
|
2866
|
+
*
|
|
2867
|
+
* @deprecated Snowflake is ending support for single-factor password authentication by November 2025. Refer to the documentation for more information on migrating to key-pair authentication.
|
|
2860
2868
|
*/
|
|
2861
2869
|
password?: pulumi.Input<string>;
|
|
2862
2870
|
/**
|
|
@@ -2867,6 +2875,10 @@ export declare namespace database {
|
|
|
2867
2875
|
* Specifies the name of the plugin to use.
|
|
2868
2876
|
*/
|
|
2869
2877
|
pluginName?: pulumi.Input<string>;
|
|
2878
|
+
/**
|
|
2879
|
+
* Version counter for the private key key-pair credentials write-only field
|
|
2880
|
+
*/
|
|
2881
|
+
privateKeyWoVersion?: pulumi.Input<number>;
|
|
2870
2882
|
/**
|
|
2871
2883
|
* A list of database statements to be executed to rotate the root user's credentials.
|
|
2872
2884
|
*/
|
|
@@ -3336,18 +3348,40 @@ export declare namespace pkiSecret {
|
|
|
3336
3348
|
}
|
|
3337
3349
|
interface BackendConfigEstAuthenticators {
|
|
3338
3350
|
/**
|
|
3339
|
-
*
|
|
3351
|
+
* The accessor (required) and certRole (optional) properties for cert auth backends.
|
|
3340
3352
|
*/
|
|
3341
3353
|
cert?: pulumi.Input<{
|
|
3342
3354
|
[key: string]: pulumi.Input<string>;
|
|
3343
3355
|
}>;
|
|
3344
3356
|
/**
|
|
3345
|
-
*
|
|
3357
|
+
* The accessor (required) property for user pass auth backends.
|
|
3346
3358
|
*/
|
|
3347
3359
|
userpass?: pulumi.Input<{
|
|
3348
3360
|
[key: string]: pulumi.Input<string>;
|
|
3349
3361
|
}>;
|
|
3350
3362
|
}
|
|
3363
|
+
interface BackendConfigScepAuthenticators {
|
|
3364
|
+
/**
|
|
3365
|
+
* The accessor and certRole properties for cert auth backends
|
|
3366
|
+
*/
|
|
3367
|
+
cert?: pulumi.Input<{
|
|
3368
|
+
[key: string]: pulumi.Input<string>;
|
|
3369
|
+
}>;
|
|
3370
|
+
/**
|
|
3371
|
+
* The accessor property for SCEP auth backends
|
|
3372
|
+
*/
|
|
3373
|
+
scep?: pulumi.Input<{
|
|
3374
|
+
[key: string]: pulumi.Input<string>;
|
|
3375
|
+
}>;
|
|
3376
|
+
}
|
|
3377
|
+
interface BackendConfigScepExternalValidation {
|
|
3378
|
+
/**
|
|
3379
|
+
* The credentials to enable Microsoft Intune validation of SCEP requests
|
|
3380
|
+
*/
|
|
3381
|
+
intune?: pulumi.Input<{
|
|
3382
|
+
[key: string]: pulumi.Input<string>;
|
|
3383
|
+
}>;
|
|
3384
|
+
}
|
|
3351
3385
|
interface SecretBackendRolePolicyIdentifier {
|
|
3352
3386
|
/**
|
|
3353
3387
|
* The URL of the CPS for the policy identifier
|
package/types/output.d.ts
CHANGED
|
@@ -1211,12 +1211,18 @@ export declare namespace database {
|
|
|
1211
1211
|
maxOpenConnections?: number;
|
|
1212
1212
|
/**
|
|
1213
1213
|
* The root credential password used in the connection URL
|
|
1214
|
+
*
|
|
1215
|
+
* @deprecated Snowflake is ending support for single-factor password authentication by November 2025. Refer to the documentation for more information on migrating to key-pair authentication.
|
|
1214
1216
|
*/
|
|
1215
1217
|
password?: string;
|
|
1216
1218
|
/**
|
|
1217
1219
|
* Version counter for root credential password write-only field
|
|
1218
1220
|
*/
|
|
1219
1221
|
passwordWoVersion?: number;
|
|
1222
|
+
/**
|
|
1223
|
+
* Version counter for the private key key-pair credentials write-only field
|
|
1224
|
+
*/
|
|
1225
|
+
privateKeyWoVersion?: number;
|
|
1220
1226
|
/**
|
|
1221
1227
|
* The root credential username used in the connection URL
|
|
1222
1228
|
*/
|
|
@@ -2798,6 +2804,8 @@ export declare namespace database {
|
|
|
2798
2804
|
name: string;
|
|
2799
2805
|
/**
|
|
2800
2806
|
* The root credential password used in the connection URL
|
|
2807
|
+
*
|
|
2808
|
+
* @deprecated Snowflake is ending support for single-factor password authentication by November 2025. Refer to the documentation for more information on migrating to key-pair authentication.
|
|
2801
2809
|
*/
|
|
2802
2810
|
password?: string;
|
|
2803
2811
|
/**
|
|
@@ -2808,6 +2816,10 @@ export declare namespace database {
|
|
|
2808
2816
|
* Specifies the name of the plugin to use.
|
|
2809
2817
|
*/
|
|
2810
2818
|
pluginName: string;
|
|
2819
|
+
/**
|
|
2820
|
+
* Version counter for the private key key-pair credentials write-only field
|
|
2821
|
+
*/
|
|
2822
|
+
privateKeyWoVersion?: number;
|
|
2811
2823
|
/**
|
|
2812
2824
|
* A list of database statements to be executed to rotate the root user's credentials.
|
|
2813
2825
|
*/
|
|
@@ -3321,18 +3333,40 @@ export declare namespace pkiSecret {
|
|
|
3321
3333
|
}
|
|
3322
3334
|
interface BackendConfigEstAuthenticators {
|
|
3323
3335
|
/**
|
|
3324
|
-
*
|
|
3336
|
+
* The accessor (required) and certRole (optional) properties for cert auth backends.
|
|
3325
3337
|
*/
|
|
3326
3338
|
cert?: {
|
|
3327
3339
|
[key: string]: string;
|
|
3328
3340
|
};
|
|
3329
3341
|
/**
|
|
3330
|
-
*
|
|
3342
|
+
* The accessor (required) property for user pass auth backends.
|
|
3331
3343
|
*/
|
|
3332
3344
|
userpass?: {
|
|
3333
3345
|
[key: string]: string;
|
|
3334
3346
|
};
|
|
3335
3347
|
}
|
|
3348
|
+
interface BackendConfigScepAuthenticators {
|
|
3349
|
+
/**
|
|
3350
|
+
* The accessor and certRole properties for cert auth backends
|
|
3351
|
+
*/
|
|
3352
|
+
cert?: {
|
|
3353
|
+
[key: string]: string;
|
|
3354
|
+
};
|
|
3355
|
+
/**
|
|
3356
|
+
* The accessor property for SCEP auth backends
|
|
3357
|
+
*/
|
|
3358
|
+
scep?: {
|
|
3359
|
+
[key: string]: string;
|
|
3360
|
+
};
|
|
3361
|
+
}
|
|
3362
|
+
interface BackendConfigScepExternalValidation {
|
|
3363
|
+
/**
|
|
3364
|
+
* The credentials to enable Microsoft Intune validation of SCEP requests
|
|
3365
|
+
*/
|
|
3366
|
+
intune?: {
|
|
3367
|
+
[key: string]: string;
|
|
3368
|
+
};
|
|
3369
|
+
}
|
|
3336
3370
|
interface GetBackendConfigCmpv2Authenticator {
|
|
3337
3371
|
/**
|
|
3338
3372
|
* The accessor and certRole properties for cert auth backends
|
|
@@ -3343,18 +3377,40 @@ export declare namespace pkiSecret {
|
|
|
3343
3377
|
}
|
|
3344
3378
|
interface GetBackendConfigEstAuthenticator {
|
|
3345
3379
|
/**
|
|
3346
|
-
*
|
|
3380
|
+
* The accessor and certRole properties for cert auth backends.
|
|
3347
3381
|
*/
|
|
3348
3382
|
cert?: {
|
|
3349
3383
|
[key: string]: string;
|
|
3350
3384
|
};
|
|
3351
3385
|
/**
|
|
3352
|
-
*
|
|
3386
|
+
* The accessor property for user pass auth backends.
|
|
3353
3387
|
*/
|
|
3354
3388
|
userpass?: {
|
|
3355
3389
|
[key: string]: string;
|
|
3356
3390
|
};
|
|
3357
3391
|
}
|
|
3392
|
+
interface GetBackendConfigScepAuthenticator {
|
|
3393
|
+
/**
|
|
3394
|
+
* The accessor and certRole properties for cert auth backends.
|
|
3395
|
+
*/
|
|
3396
|
+
cert?: {
|
|
3397
|
+
[key: string]: string;
|
|
3398
|
+
};
|
|
3399
|
+
/**
|
|
3400
|
+
* The accessor property for scep auth backends.
|
|
3401
|
+
*/
|
|
3402
|
+
scep?: {
|
|
3403
|
+
[key: string]: string;
|
|
3404
|
+
};
|
|
3405
|
+
}
|
|
3406
|
+
interface GetBackendConfigScepExternalValidation {
|
|
3407
|
+
/**
|
|
3408
|
+
* The tenant_id, client_id, clientSecret and environment properties for Microsoft Intune validation of SCEP requests.
|
|
3409
|
+
*/
|
|
3410
|
+
intune?: {
|
|
3411
|
+
[key: string]: string;
|
|
3412
|
+
};
|
|
3413
|
+
}
|
|
3358
3414
|
interface SecretBackendRolePolicyIdentifier {
|
|
3359
3415
|
/**
|
|
3360
3416
|
* The URL of the CPS for the policy identifier
|