@cdktf/provider-acme 12.0.1 → 12.2.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 +507 -218
- package/README.md +3 -3
- package/lib/certificate/index.d.ts +66 -34
- package/lib/certificate/index.js +96 -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 +3 -3
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.34.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.34.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.34.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,122 +6,134 @@ 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.34.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.34.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.34.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.34.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.34.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.34.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.34.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.34.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.34.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.34.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.34.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.34.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.34.0/docs/resources/certificate#profile Certificate#profile}
|
61
61
|
*/
|
62
62
|
readonly profile?: string;
|
63
63
|
/**
|
64
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
64
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.34.0/docs/resources/certificate#recursive_nameservers Certificate#recursive_nameservers}
|
65
65
|
*/
|
66
66
|
readonly recursiveNameservers?: string[];
|
67
67
|
/**
|
68
|
-
* 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.34.0/docs/resources/certificate#renewal_info_ignore_retry_after Certificate#renewal_info_ignore_retry_after}
|
69
|
+
*/
|
70
|
+
readonly renewalInfoIgnoreRetryAfter?: boolean | cdktf.IResolvable;
|
71
|
+
/**
|
72
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.34.0/docs/resources/certificate#renewal_info_max_sleep Certificate#renewal_info_max_sleep}
|
73
|
+
*/
|
74
|
+
readonly renewalInfoMaxSleep?: number;
|
75
|
+
/**
|
76
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.34.0/docs/resources/certificate#revoke_certificate_on_destroy Certificate#revoke_certificate_on_destroy}
|
69
77
|
*/
|
70
78
|
readonly revokeCertificateOnDestroy?: boolean | cdktf.IResolvable;
|
71
79
|
/**
|
72
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
80
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.34.0/docs/resources/certificate#revoke_certificate_reason Certificate#revoke_certificate_reason}
|
73
81
|
*/
|
74
82
|
readonly revokeCertificateReason?: string;
|
75
83
|
/**
|
76
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
84
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.34.0/docs/resources/certificate#subject_alternative_names Certificate#subject_alternative_names}
|
77
85
|
*/
|
78
86
|
readonly subjectAlternativeNames?: string[];
|
79
87
|
/**
|
88
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.34.0/docs/resources/certificate#use_renewal_info Certificate#use_renewal_info}
|
89
|
+
*/
|
90
|
+
readonly useRenewalInfo?: boolean | cdktf.IResolvable;
|
91
|
+
/**
|
80
92
|
* dns_challenge block
|
81
93
|
*
|
82
|
-
* 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.34.0/docs/resources/certificate#dns_challenge Certificate#dns_challenge}
|
83
95
|
*/
|
84
96
|
readonly dnsChallenge?: CertificateDnsChallenge[] | cdktf.IResolvable;
|
85
97
|
/**
|
86
98
|
* http_challenge block
|
87
99
|
*
|
88
|
-
* 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.34.0/docs/resources/certificate#http_challenge Certificate#http_challenge}
|
89
101
|
*/
|
90
102
|
readonly httpChallenge?: CertificateHttpChallenge;
|
91
103
|
/**
|
92
104
|
* http_memcached_challenge block
|
93
105
|
*
|
94
|
-
* 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.34.0/docs/resources/certificate#http_memcached_challenge Certificate#http_memcached_challenge}
|
95
107
|
*/
|
96
108
|
readonly httpMemcachedChallenge?: CertificateHttpMemcachedChallenge;
|
97
109
|
/**
|
98
110
|
* http_s3_challenge block
|
99
111
|
*
|
100
|
-
* 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.34.0/docs/resources/certificate#http_s3_challenge Certificate#http_s3_challenge}
|
101
113
|
*/
|
102
114
|
readonly httpS3Challenge?: CertificateHttpS3Challenge;
|
103
115
|
/**
|
104
116
|
* http_webroot_challenge block
|
105
117
|
*
|
106
|
-
* 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.34.0/docs/resources/certificate#http_webroot_challenge Certificate#http_webroot_challenge}
|
107
119
|
*/
|
108
120
|
readonly httpWebrootChallenge?: CertificateHttpWebrootChallenge;
|
109
121
|
/**
|
110
122
|
* tls_challenge block
|
111
123
|
*
|
112
|
-
* 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.34.0/docs/resources/certificate#tls_challenge Certificate#tls_challenge}
|
113
125
|
*/
|
114
126
|
readonly tlsChallenge?: CertificateTlsChallenge;
|
115
127
|
}
|
116
128
|
export interface CertificateDnsChallenge {
|
117
129
|
/**
|
118
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
130
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.34.0/docs/resources/certificate#config Certificate#config}
|
119
131
|
*/
|
120
132
|
readonly config?: {
|
121
133
|
[key: string]: string;
|
122
134
|
};
|
123
135
|
/**
|
124
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
136
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.34.0/docs/resources/certificate#provider Certificate#provider}
|
125
137
|
*/
|
126
138
|
readonly provider: string;
|
127
139
|
}
|
@@ -173,11 +185,11 @@ export declare class CertificateDnsChallengeList extends cdktf.ComplexList {
|
|
173
185
|
}
|
174
186
|
export interface CertificateHttpChallenge {
|
175
187
|
/**
|
176
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
188
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.34.0/docs/resources/certificate#port Certificate#port}
|
177
189
|
*/
|
178
190
|
readonly port?: number;
|
179
191
|
/**
|
180
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
192
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.34.0/docs/resources/certificate#proxy_header Certificate#proxy_header}
|
181
193
|
*/
|
182
194
|
readonly proxyHeader?: string;
|
183
195
|
}
|
@@ -205,7 +217,7 @@ export declare class CertificateHttpChallengeOutputReference extends cdktf.Compl
|
|
205
217
|
}
|
206
218
|
export interface CertificateHttpMemcachedChallenge {
|
207
219
|
/**
|
208
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
220
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.34.0/docs/resources/certificate#hosts Certificate#hosts}
|
209
221
|
*/
|
210
222
|
readonly hosts: string[];
|
211
223
|
}
|
@@ -227,7 +239,7 @@ export declare class CertificateHttpMemcachedChallengeOutputReference extends cd
|
|
227
239
|
}
|
228
240
|
export interface CertificateHttpS3Challenge {
|
229
241
|
/**
|
230
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
242
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.34.0/docs/resources/certificate#s3_bucket Certificate#s3_bucket}
|
231
243
|
*/
|
232
244
|
readonly s3Bucket: string;
|
233
245
|
}
|
@@ -249,7 +261,7 @@ export declare class CertificateHttpS3ChallengeOutputReference extends cdktf.Com
|
|
249
261
|
}
|
250
262
|
export interface CertificateHttpWebrootChallenge {
|
251
263
|
/**
|
252
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
264
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.34.0/docs/resources/certificate#directory Certificate#directory}
|
253
265
|
*/
|
254
266
|
readonly directory: string;
|
255
267
|
}
|
@@ -271,7 +283,7 @@ export declare class CertificateHttpWebrootChallengeOutputReference extends cdkt
|
|
271
283
|
}
|
272
284
|
export interface CertificateTlsChallenge {
|
273
285
|
/**
|
274
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
286
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.34.0/docs/resources/certificate#port Certificate#port}
|
275
287
|
*/
|
276
288
|
readonly port?: number;
|
277
289
|
}
|
@@ -293,7 +305,7 @@ export declare class CertificateTlsChallengeOutputReference extends cdktf.Comple
|
|
293
305
|
get portInput(): number | undefined;
|
294
306
|
}
|
295
307
|
/**
|
296
|
-
* Represents a {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
308
|
+
* Represents a {@link https://registry.terraform.io/providers/vancluever/acme/2.34.0/docs/resources/certificate acme_certificate}
|
297
309
|
*/
|
298
310
|
export declare class Certificate extends cdktf.TerraformResource {
|
299
311
|
static readonly tfResourceType = "acme_certificate";
|
@@ -301,12 +313,12 @@ export declare class Certificate extends cdktf.TerraformResource {
|
|
301
313
|
* Generates CDKTF code for importing a Certificate resource upon running "cdktf plan <stack-name>"
|
302
314
|
* @param scope The scope in which to define this construct
|
303
315
|
* @param importToId The construct id used in the generated config for the Certificate to import
|
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.
|
316
|
+
* @param importFromId The id of the existing Certificate that should be imported. Refer to the {@link https://registry.terraform.io/providers/vancluever/acme/2.34.0/docs/resources/certificate#import import section} in the documentation of this resource for the id to use
|
305
317
|
* @param provider? Optional instance of the provider where the Certificate to import is found
|
306
318
|
*/
|
307
319
|
static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider): cdktf.ImportableResource;
|
308
320
|
/**
|
309
|
-
* Create a new {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
321
|
+
* Create a new {@link https://registry.terraform.io/providers/vancluever/acme/2.34.0/docs/resources/certificate acme_certificate} Resource
|
310
322
|
*
|
311
323
|
* @param scope The scope in which to define this construct
|
312
324
|
* @param id The scoped construct ID. Must be unique amongst siblings in the same scope
|
@@ -390,6 +402,21 @@ export declare class Certificate extends cdktf.TerraformResource {
|
|
390
402
|
set recursiveNameservers(value: string[]);
|
391
403
|
resetRecursiveNameservers(): void;
|
392
404
|
get recursiveNameserversInput(): string[] | undefined;
|
405
|
+
get renewalInfoExplanationUrl(): string;
|
406
|
+
private _renewalInfoIgnoreRetryAfter?;
|
407
|
+
get renewalInfoIgnoreRetryAfter(): boolean | cdktf.IResolvable;
|
408
|
+
set renewalInfoIgnoreRetryAfter(value: boolean | cdktf.IResolvable);
|
409
|
+
resetRenewalInfoIgnoreRetryAfter(): void;
|
410
|
+
get renewalInfoIgnoreRetryAfterInput(): boolean | cdktf.IResolvable | undefined;
|
411
|
+
private _renewalInfoMaxSleep?;
|
412
|
+
get renewalInfoMaxSleep(): number;
|
413
|
+
set renewalInfoMaxSleep(value: number);
|
414
|
+
resetRenewalInfoMaxSleep(): void;
|
415
|
+
get renewalInfoMaxSleepInput(): number | undefined;
|
416
|
+
get renewalInfoRetryAfter(): string;
|
417
|
+
get renewalInfoWindowEnd(): string;
|
418
|
+
get renewalInfoWindowSelected(): string;
|
419
|
+
get renewalInfoWindowStart(): string;
|
393
420
|
private _revokeCertificateOnDestroy?;
|
394
421
|
get revokeCertificateOnDestroy(): boolean | cdktf.IResolvable;
|
395
422
|
set revokeCertificateOnDestroy(value: boolean | cdktf.IResolvable);
|
@@ -405,6 +432,11 @@ export declare class Certificate extends cdktf.TerraformResource {
|
|
405
432
|
set subjectAlternativeNames(value: string[]);
|
406
433
|
resetSubjectAlternativeNames(): void;
|
407
434
|
get subjectAlternativeNamesInput(): string[] | undefined;
|
435
|
+
private _useRenewalInfo?;
|
436
|
+
get useRenewalInfo(): boolean | cdktf.IResolvable;
|
437
|
+
set useRenewalInfo(value: boolean | cdktf.IResolvable);
|
438
|
+
resetUseRenewalInfo(): void;
|
439
|
+
get useRenewalInfoInput(): boolean | cdktf.IResolvable | undefined;
|
408
440
|
private _dnsChallenge;
|
409
441
|
get dnsChallenge(): CertificateDnsChallengeList;
|
410
442
|
putDnsChallenge(value: CertificateDnsChallenge[] | cdktf.IResolvable): void;
|