@pulumi/vault 5.15.0 → 5.15.1
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/certAuthBackendRole.d.ts +3 -3
- package/ldap/secretBackend.d.ts +3 -3
- package/package.json +2 -2
- package/quotaLeaseCount.d.ts +12 -0
- package/quotaLeaseCount.js +2 -0
- package/quotaLeaseCount.js.map +1 -1
- package/quotaRateLimit.d.ts +12 -0
- package/quotaRateLimit.js +2 -0
- package/quotaRateLimit.js.map +1 -1
package/certAuthBackendRole.d.ts
CHANGED
|
@@ -55,7 +55,7 @@ export declare class CertAuthBackendRole extends pulumi.CustomResource {
|
|
|
55
55
|
*/
|
|
56
56
|
readonly allowedEmailSans: pulumi.Output<string[]>;
|
|
57
57
|
/**
|
|
58
|
-
* Allowed subject names for authenticated client certificates
|
|
58
|
+
* DEPRECATED: Please use the individual `allowed_X_sans` parameters instead. Allowed subject names for authenticated client certificates
|
|
59
59
|
*/
|
|
60
60
|
readonly allowedNames: pulumi.Output<string[]>;
|
|
61
61
|
/**
|
|
@@ -177,7 +177,7 @@ export interface CertAuthBackendRoleState {
|
|
|
177
177
|
*/
|
|
178
178
|
allowedEmailSans?: pulumi.Input<pulumi.Input<string>[]>;
|
|
179
179
|
/**
|
|
180
|
-
* Allowed subject names for authenticated client certificates
|
|
180
|
+
* DEPRECATED: Please use the individual `allowed_X_sans` parameters instead. Allowed subject names for authenticated client certificates
|
|
181
181
|
*/
|
|
182
182
|
allowedNames?: pulumi.Input<pulumi.Input<string>[]>;
|
|
183
183
|
/**
|
|
@@ -291,7 +291,7 @@ export interface CertAuthBackendRoleArgs {
|
|
|
291
291
|
*/
|
|
292
292
|
allowedEmailSans?: pulumi.Input<pulumi.Input<string>[]>;
|
|
293
293
|
/**
|
|
294
|
-
* Allowed subject names for authenticated client certificates
|
|
294
|
+
* DEPRECATED: Please use the individual `allowed_X_sans` parameters instead. Allowed subject names for authenticated client certificates
|
|
295
295
|
*/
|
|
296
296
|
allowedNames?: pulumi.Input<pulumi.Input<string>[]>;
|
|
297
297
|
/**
|
package/ldap/secretBackend.d.ts
CHANGED
|
@@ -147,7 +147,7 @@ export declare class SecretBackend extends pulumi.CustomResource {
|
|
|
147
147
|
*/
|
|
148
148
|
readonly requestTimeout: pulumi.Output<number>;
|
|
149
149
|
/**
|
|
150
|
-
* The LDAP schema to use when storing entry passwords. Valid schemas include openldap
|
|
150
|
+
* The LDAP schema to use when storing entry passwords. Valid schemas include `openldap`, `ad`, and `racf`. Default is `openldap`.
|
|
151
151
|
*/
|
|
152
152
|
readonly schema: pulumi.Output<string>;
|
|
153
153
|
/**
|
|
@@ -295,7 +295,7 @@ export interface SecretBackendState {
|
|
|
295
295
|
*/
|
|
296
296
|
requestTimeout?: pulumi.Input<number>;
|
|
297
297
|
/**
|
|
298
|
-
* The LDAP schema to use when storing entry passwords. Valid schemas include openldap
|
|
298
|
+
* The LDAP schema to use when storing entry passwords. Valid schemas include `openldap`, `ad`, and `racf`. Default is `openldap`.
|
|
299
299
|
*/
|
|
300
300
|
schema?: pulumi.Input<string>;
|
|
301
301
|
/**
|
|
@@ -431,7 +431,7 @@ export interface SecretBackendArgs {
|
|
|
431
431
|
*/
|
|
432
432
|
requestTimeout?: pulumi.Input<number>;
|
|
433
433
|
/**
|
|
434
|
-
* The LDAP schema to use when storing entry passwords. Valid schemas include openldap
|
|
434
|
+
* The LDAP schema to use when storing entry passwords. Valid schemas include `openldap`, `ad`, and `racf`. Default is `openldap`.
|
|
435
435
|
*/
|
|
436
436
|
schema?: pulumi.Input<string>;
|
|
437
437
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/vault",
|
|
3
|
-
"version": "v5.15.
|
|
3
|
+
"version": "v5.15.1",
|
|
4
4
|
"description": "A Pulumi package for creating and managing HashiCorp Vault cloud resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"license": "Apache-2.0",
|
|
12
12
|
"scripts": {
|
|
13
13
|
"build": "tsc",
|
|
14
|
-
"install": "node scripts/install-pulumi-plugin.js resource vault v5.15.
|
|
14
|
+
"install": "node scripts/install-pulumi-plugin.js resource vault v5.15.1"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@pulumi/pulumi": "^3.0.0"
|
package/quotaLeaseCount.d.ts
CHANGED
|
@@ -70,6 +70,10 @@ export declare class QuotaLeaseCount extends pulumi.CustomResource {
|
|
|
70
70
|
* a namespace specific mount quota. **Note, namespaces are supported in Enterprise only.**
|
|
71
71
|
*/
|
|
72
72
|
readonly path: pulumi.Output<string | undefined>;
|
|
73
|
+
/**
|
|
74
|
+
* If set on a quota where `path` is set to an auth mount with a concept of roles (such as /auth/approle/), this will make the quota restrict login requests to that mount that are made with the specified role.
|
|
75
|
+
*/
|
|
76
|
+
readonly role: pulumi.Output<string | undefined>;
|
|
73
77
|
/**
|
|
74
78
|
* Create a QuotaLeaseCount resource with the given unique name, arguments, and options.
|
|
75
79
|
*
|
|
@@ -108,6 +112,10 @@ export interface QuotaLeaseCountState {
|
|
|
108
112
|
* a namespace specific mount quota. **Note, namespaces are supported in Enterprise only.**
|
|
109
113
|
*/
|
|
110
114
|
path?: pulumi.Input<string>;
|
|
115
|
+
/**
|
|
116
|
+
* If set on a quota where `path` is set to an auth mount with a concept of roles (such as /auth/approle/), this will make the quota restrict login requests to that mount that are made with the specified role.
|
|
117
|
+
*/
|
|
118
|
+
role?: pulumi.Input<string>;
|
|
111
119
|
}
|
|
112
120
|
/**
|
|
113
121
|
* The set of arguments for constructing a QuotaLeaseCount resource.
|
|
@@ -138,4 +146,8 @@ export interface QuotaLeaseCountArgs {
|
|
|
138
146
|
* a namespace specific mount quota. **Note, namespaces are supported in Enterprise only.**
|
|
139
147
|
*/
|
|
140
148
|
path?: pulumi.Input<string>;
|
|
149
|
+
/**
|
|
150
|
+
* If set on a quota where `path` is set to an auth mount with a concept of roles (such as /auth/approle/), this will make the quota restrict login requests to that mount that are made with the specified role.
|
|
151
|
+
*/
|
|
152
|
+
role?: pulumi.Input<string>;
|
|
141
153
|
}
|
package/quotaLeaseCount.js
CHANGED
|
@@ -67,6 +67,7 @@ class QuotaLeaseCount extends pulumi.CustomResource {
|
|
|
67
67
|
resourceInputs["name"] = state ? state.name : undefined;
|
|
68
68
|
resourceInputs["namespace"] = state ? state.namespace : undefined;
|
|
69
69
|
resourceInputs["path"] = state ? state.path : undefined;
|
|
70
|
+
resourceInputs["role"] = state ? state.role : undefined;
|
|
70
71
|
}
|
|
71
72
|
else {
|
|
72
73
|
const args = argsOrState;
|
|
@@ -77,6 +78,7 @@ class QuotaLeaseCount extends pulumi.CustomResource {
|
|
|
77
78
|
resourceInputs["name"] = args ? args.name : undefined;
|
|
78
79
|
resourceInputs["namespace"] = args ? args.namespace : undefined;
|
|
79
80
|
resourceInputs["path"] = args ? args.path : undefined;
|
|
81
|
+
resourceInputs["role"] = args ? args.role : undefined;
|
|
80
82
|
}
|
|
81
83
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
82
84
|
super(QuotaLeaseCount.__pulumiType, name, resourceInputs, opts);
|
package/quotaLeaseCount.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"quotaLeaseCount.js","sourceRoot":"","sources":["../quotaLeaseCount.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA6BG;AACH,MAAa,eAAgB,SAAQ,MAAM,CAAC,cAAc;IACtD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA4B,EAAE,IAAmC;QAC1H,OAAO,IAAI,eAAe,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACtE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,eAAe,CAAC,YAAY,CAAC;IAChE,CAAC;
|
|
1
|
+
{"version":3,"file":"quotaLeaseCount.js","sourceRoot":"","sources":["../quotaLeaseCount.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA6BG;AACH,MAAa,eAAgB,SAAQ,MAAM,CAAC,cAAc;IACtD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA4B,EAAE,IAAmC;QAC1H,OAAO,IAAI,eAAe,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACtE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,eAAe,CAAC,YAAY,CAAC;IAChE,CAAC;IAwCD,YAAY,IAAY,EAAE,WAAwD,EAAE,IAAmC;QACnH,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA+C,CAAC;YAC9D,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;SAC3D;aAAM;YACH,MAAM,IAAI,GAAG,WAA8C,CAAC;YAC5D,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,SAAS,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACtD,MAAM,IAAI,KAAK,CAAC,uCAAuC,CAAC,CAAC;aAC5D;YACD,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;SACzD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,eAAe,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACpE,CAAC;;AAzFL,0CA0FC;AA5EG,gBAAgB;AACO,4BAAY,GAAG,6CAA6C,CAAC"}
|
package/quotaRateLimit.d.ts
CHANGED
|
@@ -77,6 +77,10 @@ export declare class QuotaRateLimit extends pulumi.CustomResource {
|
|
|
77
77
|
* rule. The `rate` must be positive.
|
|
78
78
|
*/
|
|
79
79
|
readonly rate: pulumi.Output<number>;
|
|
80
|
+
/**
|
|
81
|
+
* If set on a quota where `path` is set to an auth mount with a concept of roles (such as /auth/approle/), this will make the quota restrict login requests to that mount that are made with the specified role.
|
|
82
|
+
*/
|
|
83
|
+
readonly role: pulumi.Output<string | undefined>;
|
|
80
84
|
/**
|
|
81
85
|
* Create a QuotaRateLimit resource with the given unique name, arguments, and options.
|
|
82
86
|
*
|
|
@@ -124,6 +128,10 @@ export interface QuotaRateLimitState {
|
|
|
124
128
|
* rule. The `rate` must be positive.
|
|
125
129
|
*/
|
|
126
130
|
rate?: pulumi.Input<number>;
|
|
131
|
+
/**
|
|
132
|
+
* If set on a quota where `path` is set to an auth mount with a concept of roles (such as /auth/approle/), this will make the quota restrict login requests to that mount that are made with the specified role.
|
|
133
|
+
*/
|
|
134
|
+
role?: pulumi.Input<string>;
|
|
127
135
|
}
|
|
128
136
|
/**
|
|
129
137
|
* The set of arguments for constructing a QuotaRateLimit resource.
|
|
@@ -163,4 +171,8 @@ export interface QuotaRateLimitArgs {
|
|
|
163
171
|
* rule. The `rate` must be positive.
|
|
164
172
|
*/
|
|
165
173
|
rate: pulumi.Input<number>;
|
|
174
|
+
/**
|
|
175
|
+
* If set on a quota where `path` is set to an auth mount with a concept of roles (such as /auth/approle/), this will make the quota restrict login requests to that mount that are made with the specified role.
|
|
176
|
+
*/
|
|
177
|
+
role?: pulumi.Input<string>;
|
|
166
178
|
}
|
package/quotaRateLimit.js
CHANGED
|
@@ -67,6 +67,7 @@ class QuotaRateLimit extends pulumi.CustomResource {
|
|
|
67
67
|
resourceInputs["namespace"] = state ? state.namespace : undefined;
|
|
68
68
|
resourceInputs["path"] = state ? state.path : undefined;
|
|
69
69
|
resourceInputs["rate"] = state ? state.rate : undefined;
|
|
70
|
+
resourceInputs["role"] = state ? state.role : undefined;
|
|
70
71
|
}
|
|
71
72
|
else {
|
|
72
73
|
const args = argsOrState;
|
|
@@ -79,6 +80,7 @@ class QuotaRateLimit extends pulumi.CustomResource {
|
|
|
79
80
|
resourceInputs["namespace"] = args ? args.namespace : undefined;
|
|
80
81
|
resourceInputs["path"] = args ? args.path : undefined;
|
|
81
82
|
resourceInputs["rate"] = args ? args.rate : undefined;
|
|
83
|
+
resourceInputs["role"] = args ? args.role : undefined;
|
|
82
84
|
}
|
|
83
85
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
84
86
|
super(QuotaRateLimit.__pulumiType, name, resourceInputs, opts);
|
package/quotaRateLimit.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"quotaRateLimit.js","sourceRoot":"","sources":["../quotaRateLimit.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2BG;AACH,MAAa,cAAe,SAAQ,MAAM,CAAC,cAAc;IACrD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA2B,EAAE,IAAmC;QACzH,OAAO,IAAI,cAAc,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACrE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,cAAc,CAAC,YAAY,CAAC;IAC/D,CAAC;
|
|
1
|
+
{"version":3,"file":"quotaRateLimit.js","sourceRoot":"","sources":["../quotaRateLimit.ts"],"names":[],"mappings":"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"}
|