@pulumi/tls 5.2.0-alpha.1745304509 → 5.2.0-alpha.1745477258
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/types/input.d.ts +8 -0
- package/types/output.d.ts +8 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/tls",
|
|
3
|
-
"version": "5.2.0-alpha.
|
|
3
|
+
"version": "5.2.0-alpha.1745477258",
|
|
4
4
|
"description": "A Pulumi package to create TLS resources in Pulumi programs.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -22,6 +22,6 @@
|
|
|
22
22
|
"pulumi": {
|
|
23
23
|
"resource": true,
|
|
24
24
|
"name": "tls",
|
|
25
|
-
"version": "5.2.0-alpha.
|
|
25
|
+
"version": "5.2.0-alpha.1745477258"
|
|
26
26
|
}
|
|
27
27
|
}
|
package/types/input.d.ts
CHANGED
|
@@ -8,6 +8,10 @@ export interface CertRequestSubject {
|
|
|
8
8
|
* Distinguished name: `C`
|
|
9
9
|
*/
|
|
10
10
|
country?: pulumi.Input<string>;
|
|
11
|
+
/**
|
|
12
|
+
* ASN.1 Object Identifier (OID): `1.2.840.113549.1.9.1`
|
|
13
|
+
*/
|
|
14
|
+
emailAddress?: pulumi.Input<string>;
|
|
11
15
|
/**
|
|
12
16
|
* Distinguished name: `L`
|
|
13
17
|
*/
|
|
@@ -64,6 +68,10 @@ export interface SelfSignedCertSubject {
|
|
|
64
68
|
* Distinguished name: `C`
|
|
65
69
|
*/
|
|
66
70
|
country?: pulumi.Input<string>;
|
|
71
|
+
/**
|
|
72
|
+
* ASN.1 Object Identifier (OID): `1.2.840.113549.1.9.1`
|
|
73
|
+
*/
|
|
74
|
+
emailAddress?: pulumi.Input<string>;
|
|
67
75
|
/**
|
|
68
76
|
* Distinguished name: `L`
|
|
69
77
|
*/
|
package/types/output.d.ts
CHANGED
|
@@ -7,6 +7,10 @@ export interface CertRequestSubject {
|
|
|
7
7
|
* Distinguished name: `C`
|
|
8
8
|
*/
|
|
9
9
|
country?: string;
|
|
10
|
+
/**
|
|
11
|
+
* ASN.1 Object Identifier (OID): `1.2.840.113549.1.9.1`
|
|
12
|
+
*/
|
|
13
|
+
emailAddress?: string;
|
|
10
14
|
/**
|
|
11
15
|
* Distinguished name: `L`
|
|
12
16
|
*/
|
|
@@ -92,6 +96,10 @@ export interface SelfSignedCertSubject {
|
|
|
92
96
|
* Distinguished name: `C`
|
|
93
97
|
*/
|
|
94
98
|
country?: string;
|
|
99
|
+
/**
|
|
100
|
+
* ASN.1 Object Identifier (OID): `1.2.840.113549.1.9.1`
|
|
101
|
+
*/
|
|
102
|
+
emailAddress?: string;
|
|
95
103
|
/**
|
|
96
104
|
* Distinguished name: `L`
|
|
97
105
|
*/
|