@cdktf/provider-acme 10.0.0 → 10.1.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/README.md CHANGED
@@ -1,8 +1,10 @@
1
1
 
2
- # Terraform CDK acme Provider ~> 2.10
2
+ # Terraform CDK acme Provider tracks ~> 2.10
3
3
 
4
4
  This repo builds and publishes the Terraform acme Provider bindings for [CDK for Terraform](https://cdk.tf).
5
5
 
6
+ Is based directly on acme 2.19.0
7
+
6
8
  ## Available Packages
7
9
 
8
10
  ### NPM
@@ -61,7 +63,7 @@ This project is explicitly not tracking the Terraform acme Provider version 1:1.
61
63
  These are the upstream dependencies:
62
64
 
63
65
  - [Terraform CDK](https://cdk.tf)
64
- - [Terraform acme Provider](https://registry.terraform.io/providers/vancluever/acme/2.10.0)
66
+ - [Terraform acme Provider](https://registry.terraform.io/providers/vancluever/acme/2.19.0)
65
67
  - This links to the minimum version being tracked, you can find the latest released version [in our releases](https://github.com/cdktf/cdktf-provider-acme/releases)
66
68
  - [Terraform Engine](https://terraform.io)
67
69
 
@@ -6,114 +6,118 @@ 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.18.0/docs/resources/certificate#account_key_pem Certificate#account_key_pem}
9
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.19.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.18.0/docs/resources/certificate#cert_timeout Certificate#cert_timeout}
13
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.19.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.18.0/docs/resources/certificate#certificate_p12_password Certificate#certificate_p12_password}
17
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.19.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.18.0/docs/resources/certificate#certificate_request_pem Certificate#certificate_request_pem}
21
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.19.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.18.0/docs/resources/certificate#common_name Certificate#common_name}
25
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.19.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.18.0/docs/resources/certificate#disable_complete_propagation Certificate#disable_complete_propagation}
29
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.19.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.18.0/docs/resources/certificate#id Certificate#id}
33
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.19.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.18.0/docs/resources/certificate#key_type Certificate#key_type}
40
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.19.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.18.0/docs/resources/certificate#min_days_remaining Certificate#min_days_remaining}
44
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.19.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.18.0/docs/resources/certificate#must_staple Certificate#must_staple}
48
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.19.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.18.0/docs/resources/certificate#pre_check_delay Certificate#pre_check_delay}
52
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.19.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.18.0/docs/resources/certificate#preferred_chain Certificate#preferred_chain}
56
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.19.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.18.0/docs/resources/certificate#recursive_nameservers Certificate#recursive_nameservers}
60
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.19.0/docs/resources/certificate#recursive_nameservers Certificate#recursive_nameservers}
61
61
  */
62
62
  readonly recursiveNameservers?: string[];
63
63
  /**
64
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs/resources/certificate#revoke_certificate_on_destroy Certificate#revoke_certificate_on_destroy}
64
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.19.0/docs/resources/certificate#revoke_certificate_on_destroy Certificate#revoke_certificate_on_destroy}
65
65
  */
66
66
  readonly revokeCertificateOnDestroy?: boolean | cdktf.IResolvable;
67
67
  /**
68
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs/resources/certificate#subject_alternative_names Certificate#subject_alternative_names}
68
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.19.0/docs/resources/certificate#revoke_certificate_reason Certificate#revoke_certificate_reason}
69
+ */
70
+ readonly revokeCertificateReason?: string;
71
+ /**
72
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.19.0/docs/resources/certificate#subject_alternative_names Certificate#subject_alternative_names}
69
73
  */
70
74
  readonly subjectAlternativeNames?: string[];
71
75
  /**
72
76
  * dns_challenge block
73
77
  *
74
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs/resources/certificate#dns_challenge Certificate#dns_challenge}
78
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.19.0/docs/resources/certificate#dns_challenge Certificate#dns_challenge}
75
79
  */
76
80
  readonly dnsChallenge?: CertificateDnsChallenge[] | cdktf.IResolvable;
77
81
  /**
78
82
  * http_challenge block
79
83
  *
80
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs/resources/certificate#http_challenge Certificate#http_challenge}
84
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.19.0/docs/resources/certificate#http_challenge Certificate#http_challenge}
81
85
  */
82
86
  readonly httpChallenge?: CertificateHttpChallenge;
83
87
  /**
84
88
  * http_memcached_challenge block
85
89
  *
86
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs/resources/certificate#http_memcached_challenge Certificate#http_memcached_challenge}
90
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.19.0/docs/resources/certificate#http_memcached_challenge Certificate#http_memcached_challenge}
87
91
  */
88
92
  readonly httpMemcachedChallenge?: CertificateHttpMemcachedChallenge;
89
93
  /**
90
94
  * http_s3_challenge block
91
95
  *
92
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs/resources/certificate#http_s3_challenge Certificate#http_s3_challenge}
96
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.19.0/docs/resources/certificate#http_s3_challenge Certificate#http_s3_challenge}
93
97
  */
94
98
  readonly httpS3Challenge?: CertificateHttpS3Challenge;
95
99
  /**
96
100
  * http_webroot_challenge block
97
101
  *
98
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs/resources/certificate#http_webroot_challenge Certificate#http_webroot_challenge}
102
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.19.0/docs/resources/certificate#http_webroot_challenge Certificate#http_webroot_challenge}
99
103
  */
100
104
  readonly httpWebrootChallenge?: CertificateHttpWebrootChallenge;
101
105
  /**
102
106
  * tls_challenge block
103
107
  *
104
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs/resources/certificate#tls_challenge Certificate#tls_challenge}
108
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.19.0/docs/resources/certificate#tls_challenge Certificate#tls_challenge}
105
109
  */
106
110
  readonly tlsChallenge?: CertificateTlsChallenge;
107
111
  }
108
112
  export interface CertificateDnsChallenge {
109
113
  /**
110
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs/resources/certificate#config Certificate#config}
114
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.19.0/docs/resources/certificate#config Certificate#config}
111
115
  */
112
116
  readonly config?: {
113
117
  [key: string]: string;
114
118
  };
115
119
  /**
116
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs/resources/certificate#provider Certificate#provider}
120
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.19.0/docs/resources/certificate#provider Certificate#provider}
117
121
  */
118
122
  readonly provider: string;
119
123
  }
@@ -164,11 +168,11 @@ export declare class CertificateDnsChallengeList extends cdktf.ComplexList {
164
168
  }
165
169
  export interface CertificateHttpChallenge {
166
170
  /**
167
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs/resources/certificate#port Certificate#port}
171
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.19.0/docs/resources/certificate#port Certificate#port}
168
172
  */
169
173
  readonly port?: number;
170
174
  /**
171
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs/resources/certificate#proxy_header Certificate#proxy_header}
175
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.19.0/docs/resources/certificate#proxy_header Certificate#proxy_header}
172
176
  */
173
177
  readonly proxyHeader?: string;
174
178
  }
@@ -195,7 +199,7 @@ export declare class CertificateHttpChallengeOutputReference extends cdktf.Compl
195
199
  }
196
200
  export interface CertificateHttpMemcachedChallenge {
197
201
  /**
198
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs/resources/certificate#hosts Certificate#hosts}
202
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.19.0/docs/resources/certificate#hosts Certificate#hosts}
199
203
  */
200
204
  readonly hosts: string[];
201
205
  }
@@ -216,7 +220,7 @@ export declare class CertificateHttpMemcachedChallengeOutputReference extends cd
216
220
  }
217
221
  export interface CertificateHttpS3Challenge {
218
222
  /**
219
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs/resources/certificate#s3_bucket Certificate#s3_bucket}
223
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.19.0/docs/resources/certificate#s3_bucket Certificate#s3_bucket}
220
224
  */
221
225
  readonly s3Bucket: string;
222
226
  }
@@ -237,7 +241,7 @@ export declare class CertificateHttpS3ChallengeOutputReference extends cdktf.Com
237
241
  }
238
242
  export interface CertificateHttpWebrootChallenge {
239
243
  /**
240
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs/resources/certificate#directory Certificate#directory}
244
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.19.0/docs/resources/certificate#directory Certificate#directory}
241
245
  */
242
246
  readonly directory: string;
243
247
  }
@@ -258,7 +262,7 @@ export declare class CertificateHttpWebrootChallengeOutputReference extends cdkt
258
262
  }
259
263
  export interface CertificateTlsChallenge {
260
264
  /**
261
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs/resources/certificate#port Certificate#port}
265
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.19.0/docs/resources/certificate#port Certificate#port}
262
266
  */
263
267
  readonly port?: number;
264
268
  }
@@ -279,7 +283,7 @@ export declare class CertificateTlsChallengeOutputReference extends cdktf.Comple
279
283
  get portInput(): number | undefined;
280
284
  }
281
285
  /**
282
- * Represents a {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs/resources/certificate acme_certificate}
286
+ * Represents a {@link https://registry.terraform.io/providers/vancluever/acme/2.19.0/docs/resources/certificate acme_certificate}
283
287
  */
284
288
  export declare class Certificate extends cdktf.TerraformResource {
285
289
  static readonly tfResourceType = "acme_certificate";
@@ -287,12 +291,12 @@ export declare class Certificate extends cdktf.TerraformResource {
287
291
  * Generates CDKTF code for importing a Certificate resource upon running "cdktf plan <stack-name>"
288
292
  * @param scope The scope in which to define this construct
289
293
  * @param importToId The construct id used in the generated config for the Certificate to import
290
- * @param importFromId The id of the existing Certificate that should be imported. Refer to the {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs/resources/certificate#import import section} in the documentation of this resource for the id to use
294
+ * @param importFromId The id of the existing Certificate that should be imported. Refer to the {@link https://registry.terraform.io/providers/vancluever/acme/2.19.0/docs/resources/certificate#import import section} in the documentation of this resource for the id to use
291
295
  * @param provider? Optional instance of the provider where the Certificate to import is found
292
296
  */
293
297
  static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider): cdktf.ImportableResource;
294
298
  /**
295
- * Create a new {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs/resources/certificate acme_certificate} Resource
299
+ * Create a new {@link https://registry.terraform.io/providers/vancluever/acme/2.19.0/docs/resources/certificate acme_certificate} Resource
296
300
  *
297
301
  * @param scope The scope in which to define this construct
298
302
  * @param id The scoped construct ID. Must be unique amongst siblings in the same scope
@@ -375,6 +379,11 @@ export declare class Certificate extends cdktf.TerraformResource {
375
379
  set revokeCertificateOnDestroy(value: boolean | cdktf.IResolvable);
376
380
  resetRevokeCertificateOnDestroy(): void;
377
381
  get revokeCertificateOnDestroyInput(): boolean | cdktf.IResolvable | undefined;
382
+ private _revokeCertificateReason?;
383
+ get revokeCertificateReason(): string;
384
+ set revokeCertificateReason(value: string);
385
+ resetRevokeCertificateReason(): void;
386
+ get revokeCertificateReasonInput(): string | undefined;
378
387
  private _subjectAlternativeNames?;
379
388
  get subjectAlternativeNames(): string[];
380
389
  set subjectAlternativeNames(value: string[]);