@cdktf/provider-acme 10.1.0 → 11.0.1

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/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2023 HashiCorp, Inc.
1
+ Copyright (c) 2024 HashiCorp, Inc.
2
2
 
3
3
  Mozilla Public License, version 2.0
4
4
 
package/README.md CHANGED
@@ -1,9 +1,7 @@
1
1
 
2
- # Terraform CDK acme Provider tracks ~> 2.10
2
+ # CDKTF prebuilt bindings for vancluever/acme provider version 2.19.1
3
3
 
4
- This repo builds and publishes the Terraform acme Provider bindings for [CDK for Terraform](https://cdk.tf).
5
-
6
- Is based directly on acme 2.19.0
4
+ This repo builds and publishes the [Terraform acme provider](https://registry.terraform.io/providers/vancluever/acme/2.19.1/docs) bindings for [CDK for Terraform](https://cdk.tf).
7
5
 
8
6
  ## Available Packages
9
7
 
@@ -37,12 +35,14 @@ The Maven package is available at [https://mvnrepository.com/artifact/com.hashic
37
35
  </dependency>
38
36
  ```
39
37
 
40
-
41
38
  ### Go
42
39
 
43
40
  The go package is generated into the [`github.com/cdktf/cdktf-provider-acme-go`](https://github.com/cdktf/cdktf-provider-acme-go) package.
44
41
 
45
- `go get github.com/cdktf/cdktf-provider-acme-go/acme`
42
+ `go get github.com/cdktf/cdktf-provider-acme-go/acme/<version>`
43
+
44
+ Where `<version>` is the version of the prebuilt provider you would like to use e.g. `v11`. The full module name can be found
45
+ within the [go.mod](https://github.com/cdktf/cdktf-provider-acme-go/blob/main/acme/go.mod#L1) file.
46
46
 
47
47
  ## Docs
48
48
 
@@ -58,33 +58,32 @@ You can also visit a hosted version of the documentation on [constructs.dev](htt
58
58
 
59
59
  ## Versioning
60
60
 
61
- This project is explicitly not tracking the Terraform acme Provider version 1:1. In fact, it always tracks `latest` of `~> 2.10` with every release. If there are scenarios where you explicitly have to pin your provider version, you can do so by generating the [provider constructs manually](https://cdk.tf/imports).
61
+ This project is explicitly not tracking the Terraform acme provider version 1:1. In fact, it always tracks `latest` of `~> 2.10` with every release. If there are scenarios where you explicitly have to pin your provider version, you can do so by [generating the provider constructs manually](https://cdk.tf/imports).
62
62
 
63
63
  These are the upstream dependencies:
64
64
 
65
- - [Terraform CDK](https://cdk.tf)
66
- - [Terraform acme Provider](https://registry.terraform.io/providers/vancluever/acme/2.19.0)
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)
65
+ - [CDK for Terraform](https://cdk.tf)
66
+ - [Terraform acme provider](https://registry.terraform.io/providers/vancluever/acme/2.19.1)
68
67
  - [Terraform Engine](https://terraform.io)
69
68
 
70
69
  If there are breaking changes (backward incompatible) in any of the above, the major version of this project will be bumped.
71
70
 
72
71
  ## Features / Issues / Bugs
73
72
 
74
- Please report bugs and issues to the [terraform cdk](https://cdk.tf) project:
73
+ Please report bugs and issues to the [CDK for Terraform](https://cdk.tf) project:
75
74
 
76
75
  - [Create bug report](https://cdk.tf/bug)
77
76
  - [Create feature request](https://cdk.tf/feature)
78
77
 
79
78
  ## Contributing
80
79
 
81
- ### projen
80
+ ### Projen
82
81
 
83
- This is mostly based on [projen](https://github.com/eladb/projen), which takes care of generating the entire repository.
82
+ This is mostly based on [Projen](https://github.com/projen/projen), which takes care of generating the entire repository.
84
83
 
85
- ### cdktf-provider-project based on projen
84
+ ### cdktf-provider-project based on Projen
86
85
 
87
- There's a custom [project builder](https://github.com/hashicorp/cdktf-provider-project) which encapsulate the common settings for all `cdktf` providers.
86
+ There's a custom [project builder](https://github.com/cdktf/cdktf-provider-project) which encapsulate the common settings for all `cdktf` prebuilt providers.
88
87
 
89
88
  ### Provider Version
90
89
 
@@ -92,4 +91,4 @@ The provider version can be adjusted in [./.projenrc.js](./.projenrc.js).
92
91
 
93
92
  ### Repository Management
94
93
 
95
- The repository is managed by [Repository Manager](https://github.com/hashicorp/cdktf-repository-manager/)
94
+ The repository is managed by [CDKTF Repository Manager](https://github.com/cdktf/cdktf-repository-manager/).
@@ -6,122 +6,123 @@ 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.19.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.1/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.19.0/docs/resources/certificate#cert_timeout Certificate#cert_timeout}
13
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.19.1/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.19.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.1/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.19.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.1/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.19.0/docs/resources/certificate#common_name Certificate#common_name}
25
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.19.1/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.19.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.1/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.19.0/docs/resources/certificate#id Certificate#id}
33
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.19.1/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.19.0/docs/resources/certificate#key_type Certificate#key_type}
40
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.19.1/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.19.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.1/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.19.0/docs/resources/certificate#must_staple Certificate#must_staple}
48
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.19.1/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.19.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.1/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.19.0/docs/resources/certificate#preferred_chain Certificate#preferred_chain}
56
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.19.1/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.19.0/docs/resources/certificate#recursive_nameservers Certificate#recursive_nameservers}
60
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.19.1/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.19.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.1/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.19.0/docs/resources/certificate#revoke_certificate_reason Certificate#revoke_certificate_reason}
68
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.19.1/docs/resources/certificate#revoke_certificate_reason Certificate#revoke_certificate_reason}
69
69
  */
70
70
  readonly revokeCertificateReason?: string;
71
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}
72
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.19.1/docs/resources/certificate#subject_alternative_names Certificate#subject_alternative_names}
73
73
  */
74
74
  readonly subjectAlternativeNames?: string[];
75
75
  /**
76
76
  * dns_challenge block
77
77
  *
78
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.19.0/docs/resources/certificate#dns_challenge Certificate#dns_challenge}
78
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.19.1/docs/resources/certificate#dns_challenge Certificate#dns_challenge}
79
79
  */
80
80
  readonly dnsChallenge?: CertificateDnsChallenge[] | cdktf.IResolvable;
81
81
  /**
82
82
  * http_challenge block
83
83
  *
84
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.19.0/docs/resources/certificate#http_challenge Certificate#http_challenge}
84
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.19.1/docs/resources/certificate#http_challenge Certificate#http_challenge}
85
85
  */
86
86
  readonly httpChallenge?: CertificateHttpChallenge;
87
87
  /**
88
88
  * http_memcached_challenge block
89
89
  *
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}
90
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.19.1/docs/resources/certificate#http_memcached_challenge Certificate#http_memcached_challenge}
91
91
  */
92
92
  readonly httpMemcachedChallenge?: CertificateHttpMemcachedChallenge;
93
93
  /**
94
94
  * http_s3_challenge block
95
95
  *
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}
96
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.19.1/docs/resources/certificate#http_s3_challenge Certificate#http_s3_challenge}
97
97
  */
98
98
  readonly httpS3Challenge?: CertificateHttpS3Challenge;
99
99
  /**
100
100
  * http_webroot_challenge block
101
101
  *
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}
102
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.19.1/docs/resources/certificate#http_webroot_challenge Certificate#http_webroot_challenge}
103
103
  */
104
104
  readonly httpWebrootChallenge?: CertificateHttpWebrootChallenge;
105
105
  /**
106
106
  * tls_challenge block
107
107
  *
108
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.19.0/docs/resources/certificate#tls_challenge Certificate#tls_challenge}
108
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.19.1/docs/resources/certificate#tls_challenge Certificate#tls_challenge}
109
109
  */
110
110
  readonly tlsChallenge?: CertificateTlsChallenge;
111
111
  }
112
112
  export interface CertificateDnsChallenge {
113
113
  /**
114
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.19.0/docs/resources/certificate#config Certificate#config}
114
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.19.1/docs/resources/certificate#config Certificate#config}
115
115
  */
116
116
  readonly config?: {
117
117
  [key: string]: string;
118
118
  };
119
119
  /**
120
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.19.0/docs/resources/certificate#provider Certificate#provider}
120
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.19.1/docs/resources/certificate#provider Certificate#provider}
121
121
  */
122
122
  readonly provider: string;
123
123
  }
124
124
  export declare function certificateDnsChallengeToTerraform(struct?: CertificateDnsChallenge | cdktf.IResolvable): any;
125
+ export declare function certificateDnsChallengeToHclTerraform(struct?: CertificateDnsChallenge | cdktf.IResolvable): any;
125
126
  export declare class CertificateDnsChallengeOutputReference extends cdktf.ComplexObject {
126
127
  private isEmptyObject;
127
128
  private resolvableValue?;
@@ -168,15 +169,16 @@ export declare class CertificateDnsChallengeList extends cdktf.ComplexList {
168
169
  }
169
170
  export interface CertificateHttpChallenge {
170
171
  /**
171
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.19.0/docs/resources/certificate#port Certificate#port}
172
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.19.1/docs/resources/certificate#port Certificate#port}
172
173
  */
173
174
  readonly port?: number;
174
175
  /**
175
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.19.0/docs/resources/certificate#proxy_header Certificate#proxy_header}
176
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.19.1/docs/resources/certificate#proxy_header Certificate#proxy_header}
176
177
  */
177
178
  readonly proxyHeader?: string;
178
179
  }
179
180
  export declare function certificateHttpChallengeToTerraform(struct?: CertificateHttpChallengeOutputReference | CertificateHttpChallenge): any;
181
+ export declare function certificateHttpChallengeToHclTerraform(struct?: CertificateHttpChallengeOutputReference | CertificateHttpChallenge): any;
180
182
  export declare class CertificateHttpChallengeOutputReference extends cdktf.ComplexObject {
181
183
  private isEmptyObject;
182
184
  /**
@@ -199,11 +201,12 @@ export declare class CertificateHttpChallengeOutputReference extends cdktf.Compl
199
201
  }
200
202
  export interface CertificateHttpMemcachedChallenge {
201
203
  /**
202
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.19.0/docs/resources/certificate#hosts Certificate#hosts}
204
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.19.1/docs/resources/certificate#hosts Certificate#hosts}
203
205
  */
204
206
  readonly hosts: string[];
205
207
  }
206
208
  export declare function certificateHttpMemcachedChallengeToTerraform(struct?: CertificateHttpMemcachedChallengeOutputReference | CertificateHttpMemcachedChallenge): any;
209
+ export declare function certificateHttpMemcachedChallengeToHclTerraform(struct?: CertificateHttpMemcachedChallengeOutputReference | CertificateHttpMemcachedChallenge): any;
207
210
  export declare class CertificateHttpMemcachedChallengeOutputReference extends cdktf.ComplexObject {
208
211
  private isEmptyObject;
209
212
  /**
@@ -220,11 +223,12 @@ export declare class CertificateHttpMemcachedChallengeOutputReference extends cd
220
223
  }
221
224
  export interface CertificateHttpS3Challenge {
222
225
  /**
223
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.19.0/docs/resources/certificate#s3_bucket Certificate#s3_bucket}
226
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.19.1/docs/resources/certificate#s3_bucket Certificate#s3_bucket}
224
227
  */
225
228
  readonly s3Bucket: string;
226
229
  }
227
230
  export declare function certificateHttpS3ChallengeToTerraform(struct?: CertificateHttpS3ChallengeOutputReference | CertificateHttpS3Challenge): any;
231
+ export declare function certificateHttpS3ChallengeToHclTerraform(struct?: CertificateHttpS3ChallengeOutputReference | CertificateHttpS3Challenge): any;
228
232
  export declare class CertificateHttpS3ChallengeOutputReference extends cdktf.ComplexObject {
229
233
  private isEmptyObject;
230
234
  /**
@@ -241,11 +245,12 @@ export declare class CertificateHttpS3ChallengeOutputReference extends cdktf.Com
241
245
  }
242
246
  export interface CertificateHttpWebrootChallenge {
243
247
  /**
244
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.19.0/docs/resources/certificate#directory Certificate#directory}
248
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.19.1/docs/resources/certificate#directory Certificate#directory}
245
249
  */
246
250
  readonly directory: string;
247
251
  }
248
252
  export declare function certificateHttpWebrootChallengeToTerraform(struct?: CertificateHttpWebrootChallengeOutputReference | CertificateHttpWebrootChallenge): any;
253
+ export declare function certificateHttpWebrootChallengeToHclTerraform(struct?: CertificateHttpWebrootChallengeOutputReference | CertificateHttpWebrootChallenge): any;
249
254
  export declare class CertificateHttpWebrootChallengeOutputReference extends cdktf.ComplexObject {
250
255
  private isEmptyObject;
251
256
  /**
@@ -262,11 +267,12 @@ export declare class CertificateHttpWebrootChallengeOutputReference extends cdkt
262
267
  }
263
268
  export interface CertificateTlsChallenge {
264
269
  /**
265
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.19.0/docs/resources/certificate#port Certificate#port}
270
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.19.1/docs/resources/certificate#port Certificate#port}
266
271
  */
267
272
  readonly port?: number;
268
273
  }
269
274
  export declare function certificateTlsChallengeToTerraform(struct?: CertificateTlsChallengeOutputReference | CertificateTlsChallenge): any;
275
+ export declare function certificateTlsChallengeToHclTerraform(struct?: CertificateTlsChallengeOutputReference | CertificateTlsChallenge): any;
270
276
  export declare class CertificateTlsChallengeOutputReference extends cdktf.ComplexObject {
271
277
  private isEmptyObject;
272
278
  /**
@@ -283,7 +289,7 @@ export declare class CertificateTlsChallengeOutputReference extends cdktf.Comple
283
289
  get portInput(): number | undefined;
284
290
  }
285
291
  /**
286
- * Represents a {@link https://registry.terraform.io/providers/vancluever/acme/2.19.0/docs/resources/certificate acme_certificate}
292
+ * Represents a {@link https://registry.terraform.io/providers/vancluever/acme/2.19.1/docs/resources/certificate acme_certificate}
287
293
  */
288
294
  export declare class Certificate extends cdktf.TerraformResource {
289
295
  static readonly tfResourceType = "acme_certificate";
@@ -291,12 +297,12 @@ export declare class Certificate extends cdktf.TerraformResource {
291
297
  * Generates CDKTF code for importing a Certificate resource upon running "cdktf plan <stack-name>"
292
298
  * @param scope The scope in which to define this construct
293
299
  * @param importToId The construct id used in the generated config for the Certificate to import
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
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.19.1/docs/resources/certificate#import import section} in the documentation of this resource for the id to use
295
301
  * @param provider? Optional instance of the provider where the Certificate to import is found
296
302
  */
297
303
  static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider): cdktf.ImportableResource;
298
304
  /**
299
- * Create a new {@link https://registry.terraform.io/providers/vancluever/acme/2.19.0/docs/resources/certificate acme_certificate} Resource
305
+ * Create a new {@link https://registry.terraform.io/providers/vancluever/acme/2.19.1/docs/resources/certificate acme_certificate} Resource
300
306
  *
301
307
  * @param scope The scope in which to define this construct
302
308
  * @param id The scoped construct ID. Must be unique amongst siblings in the same scope
@@ -422,4 +428,7 @@ export declare class Certificate extends cdktf.TerraformResource {
422
428
  protected synthesizeAttributes(): {
423
429
  [name: string]: any;
424
430
  };
431
+ protected synthesizeHclAttributes(): {
432
+ [name: string]: any;
433
+ };
425
434
  }