@pulumi/random 4.21.1 → 4.21.2
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/package.json +2 -2
- package/randomPassword.d.ts +10 -10
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/random",
|
|
3
|
-
"version": "4.21.
|
|
3
|
+
"version": "4.21.2",
|
|
4
4
|
"description": "A Pulumi package to safely use randomness in Pulumi programs.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -22,6 +22,6 @@
|
|
|
22
22
|
"pulumi": {
|
|
23
23
|
"resource": true,
|
|
24
24
|
"name": "random",
|
|
25
|
-
"version": "4.21.
|
|
25
|
+
"version": "4.21.2"
|
|
26
26
|
}
|
|
27
27
|
}
|
package/randomPassword.d.ts
CHANGED
|
@@ -48,7 +48,7 @@ export declare class RandomPassword extends pulumi.CustomResource {
|
|
|
48
48
|
*/
|
|
49
49
|
static isInstance(obj: any): obj is RandomPassword;
|
|
50
50
|
/**
|
|
51
|
-
* A bcrypt hash of the generated random
|
|
51
|
+
* A bcrypt hash of the generated random password. **NOTE**: If the generated random password is greater than 72 bytes in length, `bcryptHash` will contain a hash of the first 72 bytes.
|
|
52
52
|
*/
|
|
53
53
|
readonly bcryptHash: pulumi.Output<string>;
|
|
54
54
|
/**
|
|
@@ -58,7 +58,7 @@ export declare class RandomPassword extends pulumi.CustomResource {
|
|
|
58
58
|
[key: string]: string;
|
|
59
59
|
} | undefined>;
|
|
60
60
|
/**
|
|
61
|
-
* The length of the
|
|
61
|
+
* The length of the password desired. The minimum value for length is 1 and, length must also be >= (`minUpper` + `minLower` + `minNumeric` + `minSpecial`).
|
|
62
62
|
*/
|
|
63
63
|
readonly length: pulumi.Output<number>;
|
|
64
64
|
/**
|
|
@@ -92,11 +92,11 @@ export declare class RandomPassword extends pulumi.CustomResource {
|
|
|
92
92
|
*/
|
|
93
93
|
readonly numeric: pulumi.Output<boolean>;
|
|
94
94
|
/**
|
|
95
|
-
* Supply your own list of special characters to use for
|
|
95
|
+
* Supply your own list of special characters to use for password generation. This overrides the default character list in the special argument. The `special` argument must still be set to true for any overwritten characters to be used in generation.
|
|
96
96
|
*/
|
|
97
97
|
readonly overrideSpecial: pulumi.Output<string | undefined>;
|
|
98
98
|
/**
|
|
99
|
-
* The generated random
|
|
99
|
+
* The generated random password.
|
|
100
100
|
*/
|
|
101
101
|
readonly result: pulumi.Output<string>;
|
|
102
102
|
/**
|
|
@@ -121,7 +121,7 @@ export declare class RandomPassword extends pulumi.CustomResource {
|
|
|
121
121
|
*/
|
|
122
122
|
export interface RandomPasswordState {
|
|
123
123
|
/**
|
|
124
|
-
* A bcrypt hash of the generated random
|
|
124
|
+
* A bcrypt hash of the generated random password. **NOTE**: If the generated random password is greater than 72 bytes in length, `bcryptHash` will contain a hash of the first 72 bytes.
|
|
125
125
|
*/
|
|
126
126
|
bcryptHash?: pulumi.Input<string | undefined>;
|
|
127
127
|
/**
|
|
@@ -131,7 +131,7 @@ export interface RandomPasswordState {
|
|
|
131
131
|
[key: string]: pulumi.Input<string>;
|
|
132
132
|
} | undefined>;
|
|
133
133
|
/**
|
|
134
|
-
* The length of the
|
|
134
|
+
* The length of the password desired. The minimum value for length is 1 and, length must also be >= (`minUpper` + `minLower` + `minNumeric` + `minSpecial`).
|
|
135
135
|
*/
|
|
136
136
|
length?: pulumi.Input<number | undefined>;
|
|
137
137
|
/**
|
|
@@ -165,11 +165,11 @@ export interface RandomPasswordState {
|
|
|
165
165
|
*/
|
|
166
166
|
numeric?: pulumi.Input<boolean | undefined>;
|
|
167
167
|
/**
|
|
168
|
-
* Supply your own list of special characters to use for
|
|
168
|
+
* Supply your own list of special characters to use for password generation. This overrides the default character list in the special argument. The `special` argument must still be set to true for any overwritten characters to be used in generation.
|
|
169
169
|
*/
|
|
170
170
|
overrideSpecial?: pulumi.Input<string | undefined>;
|
|
171
171
|
/**
|
|
172
|
-
* The generated random
|
|
172
|
+
* The generated random password.
|
|
173
173
|
*/
|
|
174
174
|
result?: pulumi.Input<string | undefined>;
|
|
175
175
|
/**
|
|
@@ -192,7 +192,7 @@ export interface RandomPasswordArgs {
|
|
|
192
192
|
[key: string]: pulumi.Input<string>;
|
|
193
193
|
} | undefined>;
|
|
194
194
|
/**
|
|
195
|
-
* The length of the
|
|
195
|
+
* The length of the password desired. The minimum value for length is 1 and, length must also be >= (`minUpper` + `minLower` + `minNumeric` + `minSpecial`).
|
|
196
196
|
*/
|
|
197
197
|
length: pulumi.Input<number>;
|
|
198
198
|
/**
|
|
@@ -226,7 +226,7 @@ export interface RandomPasswordArgs {
|
|
|
226
226
|
*/
|
|
227
227
|
numeric?: pulumi.Input<boolean | undefined>;
|
|
228
228
|
/**
|
|
229
|
-
* Supply your own list of special characters to use for
|
|
229
|
+
* Supply your own list of special characters to use for password generation. This overrides the default character list in the special argument. The `special` argument must still be set to true for any overwritten characters to be used in generation.
|
|
230
230
|
*/
|
|
231
231
|
overrideSpecial?: pulumi.Input<string | undefined>;
|
|
232
232
|
/**
|