@cdktf/provider-acme 11.11.3 → 11.13.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/.jsii +270 -215
- package/README.md +3 -3
- package/lib/certificate/index.d.ts +42 -33
- package/lib/certificate/index.js +34 -13
- package/lib/data-acme-server-url/index.d.ts +4 -4
- package/lib/data-acme-server-url/index.js +6 -6
- package/lib/provider/index.d.ts +5 -5
- package/lib/provider/index.js +6 -6
- package/lib/registration/index.d.ts +12 -12
- package/lib/registration/index.js +7 -7
- package/package.json +8 -8
package/README.md
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
|
2
|
-
# CDKTF prebuilt bindings for vancluever/acme provider version 2.
|
2
|
+
# CDKTF prebuilt bindings for vancluever/acme provider version 2.32.0
|
3
3
|
|
4
|
-
This repo builds and publishes the [Terraform acme provider](https://registry.terraform.io/providers/vancluever/acme/2.
|
4
|
+
This repo builds and publishes the [Terraform acme provider](https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs) bindings for [CDK for Terraform](https://cdk.tf).
|
5
5
|
|
6
6
|
## Available Packages
|
7
7
|
|
@@ -63,7 +63,7 @@ This project is explicitly not tracking the Terraform acme provider version 1:1.
|
|
63
63
|
These are the upstream dependencies:
|
64
64
|
|
65
65
|
- [CDK for Terraform](https://cdk.tf)
|
66
|
-
- [Terraform acme provider](https://registry.terraform.io/providers/vancluever/acme/2.
|
66
|
+
- [Terraform acme provider](https://registry.terraform.io/providers/vancluever/acme/2.32.0)
|
67
67
|
- [Terraform Engine](https://terraform.io)
|
68
68
|
|
69
69
|
If there are breaking changes (backward incompatible) in any of the above, the major version of this project will be bumped.
|
@@ -6,118 +6,122 @@ import { Construct } from 'constructs';
|
|
6
6
|
import * as cdktf from 'cdktf';
|
7
7
|
export interface CertificateConfig extends cdktf.TerraformMetaArguments {
|
8
8
|
/**
|
9
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
9
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs/resources/certificate#account_key_pem Certificate#account_key_pem}
|
10
10
|
*/
|
11
11
|
readonly accountKeyPem: string;
|
12
12
|
/**
|
13
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
13
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs/resources/certificate#cert_timeout Certificate#cert_timeout}
|
14
14
|
*/
|
15
15
|
readonly certTimeout?: number;
|
16
16
|
/**
|
17
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
17
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs/resources/certificate#certificate_p12_password Certificate#certificate_p12_password}
|
18
18
|
*/
|
19
19
|
readonly certificateP12Password?: string;
|
20
20
|
/**
|
21
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
21
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs/resources/certificate#certificate_request_pem Certificate#certificate_request_pem}
|
22
22
|
*/
|
23
23
|
readonly certificateRequestPem?: string;
|
24
24
|
/**
|
25
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
25
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs/resources/certificate#common_name Certificate#common_name}
|
26
26
|
*/
|
27
27
|
readonly commonName?: string;
|
28
28
|
/**
|
29
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
29
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs/resources/certificate#disable_complete_propagation Certificate#disable_complete_propagation}
|
30
30
|
*/
|
31
31
|
readonly disableCompletePropagation?: boolean | cdktf.IResolvable;
|
32
32
|
/**
|
33
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
33
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs/resources/certificate#id Certificate#id}
|
34
34
|
*
|
35
35
|
* Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2.
|
36
36
|
* If you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable.
|
37
37
|
*/
|
38
38
|
readonly id?: string;
|
39
39
|
/**
|
40
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
40
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs/resources/certificate#key_type Certificate#key_type}
|
41
41
|
*/
|
42
42
|
readonly keyType?: string;
|
43
43
|
/**
|
44
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
44
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs/resources/certificate#min_days_remaining Certificate#min_days_remaining}
|
45
45
|
*/
|
46
46
|
readonly minDaysRemaining?: number;
|
47
47
|
/**
|
48
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
48
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs/resources/certificate#must_staple Certificate#must_staple}
|
49
49
|
*/
|
50
50
|
readonly mustStaple?: boolean | cdktf.IResolvable;
|
51
51
|
/**
|
52
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
52
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs/resources/certificate#pre_check_delay Certificate#pre_check_delay}
|
53
53
|
*/
|
54
54
|
readonly preCheckDelay?: number;
|
55
55
|
/**
|
56
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
56
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs/resources/certificate#preferred_chain Certificate#preferred_chain}
|
57
57
|
*/
|
58
58
|
readonly preferredChain?: string;
|
59
59
|
/**
|
60
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
60
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs/resources/certificate#profile Certificate#profile}
|
61
|
+
*/
|
62
|
+
readonly profile?: string;
|
63
|
+
/**
|
64
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs/resources/certificate#recursive_nameservers Certificate#recursive_nameservers}
|
61
65
|
*/
|
62
66
|
readonly recursiveNameservers?: string[];
|
63
67
|
/**
|
64
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
68
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs/resources/certificate#revoke_certificate_on_destroy Certificate#revoke_certificate_on_destroy}
|
65
69
|
*/
|
66
70
|
readonly revokeCertificateOnDestroy?: boolean | cdktf.IResolvable;
|
67
71
|
/**
|
68
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
72
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs/resources/certificate#revoke_certificate_reason Certificate#revoke_certificate_reason}
|
69
73
|
*/
|
70
74
|
readonly revokeCertificateReason?: string;
|
71
75
|
/**
|
72
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
76
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs/resources/certificate#subject_alternative_names Certificate#subject_alternative_names}
|
73
77
|
*/
|
74
78
|
readonly subjectAlternativeNames?: string[];
|
75
79
|
/**
|
76
80
|
* dns_challenge block
|
77
81
|
*
|
78
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
82
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs/resources/certificate#dns_challenge Certificate#dns_challenge}
|
79
83
|
*/
|
80
84
|
readonly dnsChallenge?: CertificateDnsChallenge[] | cdktf.IResolvable;
|
81
85
|
/**
|
82
86
|
* http_challenge block
|
83
87
|
*
|
84
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
88
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs/resources/certificate#http_challenge Certificate#http_challenge}
|
85
89
|
*/
|
86
90
|
readonly httpChallenge?: CertificateHttpChallenge;
|
87
91
|
/**
|
88
92
|
* http_memcached_challenge block
|
89
93
|
*
|
90
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
94
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs/resources/certificate#http_memcached_challenge Certificate#http_memcached_challenge}
|
91
95
|
*/
|
92
96
|
readonly httpMemcachedChallenge?: CertificateHttpMemcachedChallenge;
|
93
97
|
/**
|
94
98
|
* http_s3_challenge block
|
95
99
|
*
|
96
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
100
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs/resources/certificate#http_s3_challenge Certificate#http_s3_challenge}
|
97
101
|
*/
|
98
102
|
readonly httpS3Challenge?: CertificateHttpS3Challenge;
|
99
103
|
/**
|
100
104
|
* http_webroot_challenge block
|
101
105
|
*
|
102
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
106
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs/resources/certificate#http_webroot_challenge Certificate#http_webroot_challenge}
|
103
107
|
*/
|
104
108
|
readonly httpWebrootChallenge?: CertificateHttpWebrootChallenge;
|
105
109
|
/**
|
106
110
|
* tls_challenge block
|
107
111
|
*
|
108
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
112
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs/resources/certificate#tls_challenge Certificate#tls_challenge}
|
109
113
|
*/
|
110
114
|
readonly tlsChallenge?: CertificateTlsChallenge;
|
111
115
|
}
|
112
116
|
export interface CertificateDnsChallenge {
|
113
117
|
/**
|
114
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
118
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs/resources/certificate#config Certificate#config}
|
115
119
|
*/
|
116
120
|
readonly config?: {
|
117
121
|
[key: string]: string;
|
118
122
|
};
|
119
123
|
/**
|
120
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
124
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs/resources/certificate#provider Certificate#provider}
|
121
125
|
*/
|
122
126
|
readonly provider: string;
|
123
127
|
}
|
@@ -169,11 +173,11 @@ export declare class CertificateDnsChallengeList extends cdktf.ComplexList {
|
|
169
173
|
}
|
170
174
|
export interface CertificateHttpChallenge {
|
171
175
|
/**
|
172
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
176
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs/resources/certificate#port Certificate#port}
|
173
177
|
*/
|
174
178
|
readonly port?: number;
|
175
179
|
/**
|
176
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
180
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs/resources/certificate#proxy_header Certificate#proxy_header}
|
177
181
|
*/
|
178
182
|
readonly proxyHeader?: string;
|
179
183
|
}
|
@@ -201,7 +205,7 @@ export declare class CertificateHttpChallengeOutputReference extends cdktf.Compl
|
|
201
205
|
}
|
202
206
|
export interface CertificateHttpMemcachedChallenge {
|
203
207
|
/**
|
204
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
208
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs/resources/certificate#hosts Certificate#hosts}
|
205
209
|
*/
|
206
210
|
readonly hosts: string[];
|
207
211
|
}
|
@@ -223,7 +227,7 @@ export declare class CertificateHttpMemcachedChallengeOutputReference extends cd
|
|
223
227
|
}
|
224
228
|
export interface CertificateHttpS3Challenge {
|
225
229
|
/**
|
226
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
230
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs/resources/certificate#s3_bucket Certificate#s3_bucket}
|
227
231
|
*/
|
228
232
|
readonly s3Bucket: string;
|
229
233
|
}
|
@@ -245,7 +249,7 @@ export declare class CertificateHttpS3ChallengeOutputReference extends cdktf.Com
|
|
245
249
|
}
|
246
250
|
export interface CertificateHttpWebrootChallenge {
|
247
251
|
/**
|
248
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
252
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs/resources/certificate#directory Certificate#directory}
|
249
253
|
*/
|
250
254
|
readonly directory: string;
|
251
255
|
}
|
@@ -267,7 +271,7 @@ export declare class CertificateHttpWebrootChallengeOutputReference extends cdkt
|
|
267
271
|
}
|
268
272
|
export interface CertificateTlsChallenge {
|
269
273
|
/**
|
270
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
274
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs/resources/certificate#port Certificate#port}
|
271
275
|
*/
|
272
276
|
readonly port?: number;
|
273
277
|
}
|
@@ -289,7 +293,7 @@ export declare class CertificateTlsChallengeOutputReference extends cdktf.Comple
|
|
289
293
|
get portInput(): number | undefined;
|
290
294
|
}
|
291
295
|
/**
|
292
|
-
* Represents a {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
296
|
+
* Represents a {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs/resources/certificate acme_certificate}
|
293
297
|
*/
|
294
298
|
export declare class Certificate extends cdktf.TerraformResource {
|
295
299
|
static readonly tfResourceType = "acme_certificate";
|
@@ -297,12 +301,12 @@ export declare class Certificate extends cdktf.TerraformResource {
|
|
297
301
|
* Generates CDKTF code for importing a Certificate resource upon running "cdktf plan <stack-name>"
|
298
302
|
* @param scope The scope in which to define this construct
|
299
303
|
* @param importToId The construct id used in the generated config for the Certificate to import
|
300
|
-
* @param importFromId The id of the existing Certificate that should be imported. Refer to the {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
304
|
+
* @param importFromId The id of the existing Certificate that should be imported. Refer to the {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs/resources/certificate#import import section} in the documentation of this resource for the id to use
|
301
305
|
* @param provider? Optional instance of the provider where the Certificate to import is found
|
302
306
|
*/
|
303
307
|
static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider): cdktf.ImportableResource;
|
304
308
|
/**
|
305
|
-
* Create a new {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
309
|
+
* Create a new {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs/resources/certificate acme_certificate} Resource
|
306
310
|
*
|
307
311
|
* @param scope The scope in which to define this construct
|
308
312
|
* @param id The scoped construct ID. Must be unique amongst siblings in the same scope
|
@@ -376,6 +380,11 @@ export declare class Certificate extends cdktf.TerraformResource {
|
|
376
380
|
resetPreferredChain(): void;
|
377
381
|
get preferredChainInput(): string | undefined;
|
378
382
|
get privateKeyPem(): string;
|
383
|
+
private _profile?;
|
384
|
+
get profile(): string;
|
385
|
+
set profile(value: string);
|
386
|
+
resetProfile(): void;
|
387
|
+
get profileInput(): string | undefined;
|
379
388
|
private _recursiveNameservers?;
|
380
389
|
get recursiveNameservers(): string[];
|
381
390
|
set recursiveNameservers(value: string[]);
|