@cdktf/provider-acme 10.0.0 → 11.0.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 +345 -224
- package/LICENSE +1 -1
- package/README.md +11 -13
- package/lib/certificate/index.d.ts +50 -32
- package/lib/certificate/index.js +293 -14
- package/lib/provider/index.d.ts +8 -5
- package/lib/provider/index.js +24 -6
- package/lib/registration/index.d.ts +13 -9
- package/lib/registration/index.js +63 -8
- package/package.json +17 -17
- package/.copywrite.hcl +0 -24
- package/.gitattributes +0 -36
- package/scripts/check-for-upgrades.js +0 -152
- package/scripts/should-release.js +0 -78
package/LICENSE
CHANGED
package/README.md
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
|
2
|
-
#
|
2
|
+
# CDKTF prebuilt bindings for vancluever/acme provider version 2.19.0
|
3
3
|
|
4
|
-
This repo builds and publishes the Terraform acme
|
4
|
+
This repo builds and publishes the [Terraform acme provider](https://registry.terraform.io/providers/vancluever/acme/2.19.0/docs) bindings for [CDK for Terraform](https://cdk.tf).
|
5
5
|
|
6
6
|
## Available Packages
|
7
7
|
|
@@ -35,7 +35,6 @@ The Maven package is available at [https://mvnrepository.com/artifact/com.hashic
|
|
35
35
|
</dependency>
|
36
36
|
```
|
37
37
|
|
38
|
-
|
39
38
|
### Go
|
40
39
|
|
41
40
|
The go package is generated into the [`github.com/cdktf/cdktf-provider-acme-go`](https://github.com/cdktf/cdktf-provider-acme-go) package.
|
@@ -56,33 +55,32 @@ You can also visit a hosted version of the documentation on [constructs.dev](htt
|
|
56
55
|
|
57
56
|
## Versioning
|
58
57
|
|
59
|
-
This project is explicitly not tracking the Terraform acme
|
58
|
+
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).
|
60
59
|
|
61
60
|
These are the upstream dependencies:
|
62
61
|
|
63
|
-
- [Terraform
|
64
|
-
- [Terraform acme
|
65
|
-
- 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)
|
62
|
+
- [CDK for Terraform](https://cdk.tf)
|
63
|
+
- [Terraform acme provider](https://registry.terraform.io/providers/vancluever/acme/2.19.0)
|
66
64
|
- [Terraform Engine](https://terraform.io)
|
67
65
|
|
68
66
|
If there are breaking changes (backward incompatible) in any of the above, the major version of this project will be bumped.
|
69
67
|
|
70
68
|
## Features / Issues / Bugs
|
71
69
|
|
72
|
-
Please report bugs and issues to the [
|
70
|
+
Please report bugs and issues to the [CDK for Terraform](https://cdk.tf) project:
|
73
71
|
|
74
72
|
- [Create bug report](https://cdk.tf/bug)
|
75
73
|
- [Create feature request](https://cdk.tf/feature)
|
76
74
|
|
77
75
|
## Contributing
|
78
76
|
|
79
|
-
###
|
77
|
+
### Projen
|
80
78
|
|
81
|
-
This is mostly based on [
|
79
|
+
This is mostly based on [Projen](https://github.com/projen/projen), which takes care of generating the entire repository.
|
82
80
|
|
83
|
-
### cdktf-provider-project based on
|
81
|
+
### cdktf-provider-project based on Projen
|
84
82
|
|
85
|
-
There's a custom [project builder](https://github.com/
|
83
|
+
There's a custom [project builder](https://github.com/cdktf/cdktf-provider-project) which encapsulate the common settings for all `cdktf` prebuilt providers.
|
86
84
|
|
87
85
|
### Provider Version
|
88
86
|
|
@@ -90,4 +88,4 @@ The provider version can be adjusted in [./.projenrc.js](./.projenrc.js).
|
|
90
88
|
|
91
89
|
### Repository Management
|
92
90
|
|
93
|
-
The repository is managed by [Repository Manager](https://github.com/
|
91
|
+
The repository is managed by [CDKTF Repository Manager](https://github.com/cdktf/cdktf-repository-manager/).
|
@@ -6,118 +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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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
|
}
|
120
124
|
export declare function certificateDnsChallengeToTerraform(struct?: CertificateDnsChallenge | cdktf.IResolvable): any;
|
125
|
+
export declare function certificateDnsChallengeToHclTerraform(struct?: CertificateDnsChallenge | cdktf.IResolvable): any;
|
121
126
|
export declare class CertificateDnsChallengeOutputReference extends cdktf.ComplexObject {
|
122
127
|
private isEmptyObject;
|
123
128
|
private resolvableValue?;
|
@@ -164,15 +169,16 @@ export declare class CertificateDnsChallengeList extends cdktf.ComplexList {
|
|
164
169
|
}
|
165
170
|
export interface CertificateHttpChallenge {
|
166
171
|
/**
|
167
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
172
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.19.0/docs/resources/certificate#port Certificate#port}
|
168
173
|
*/
|
169
174
|
readonly port?: number;
|
170
175
|
/**
|
171
|
-
* 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.19.0/docs/resources/certificate#proxy_header Certificate#proxy_header}
|
172
177
|
*/
|
173
178
|
readonly proxyHeader?: string;
|
174
179
|
}
|
175
180
|
export declare function certificateHttpChallengeToTerraform(struct?: CertificateHttpChallengeOutputReference | CertificateHttpChallenge): any;
|
181
|
+
export declare function certificateHttpChallengeToHclTerraform(struct?: CertificateHttpChallengeOutputReference | CertificateHttpChallenge): any;
|
176
182
|
export declare class CertificateHttpChallengeOutputReference extends cdktf.ComplexObject {
|
177
183
|
private isEmptyObject;
|
178
184
|
/**
|
@@ -195,11 +201,12 @@ export declare class CertificateHttpChallengeOutputReference extends cdktf.Compl
|
|
195
201
|
}
|
196
202
|
export interface CertificateHttpMemcachedChallenge {
|
197
203
|
/**
|
198
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
204
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.19.0/docs/resources/certificate#hosts Certificate#hosts}
|
199
205
|
*/
|
200
206
|
readonly hosts: string[];
|
201
207
|
}
|
202
208
|
export declare function certificateHttpMemcachedChallengeToTerraform(struct?: CertificateHttpMemcachedChallengeOutputReference | CertificateHttpMemcachedChallenge): any;
|
209
|
+
export declare function certificateHttpMemcachedChallengeToHclTerraform(struct?: CertificateHttpMemcachedChallengeOutputReference | CertificateHttpMemcachedChallenge): any;
|
203
210
|
export declare class CertificateHttpMemcachedChallengeOutputReference extends cdktf.ComplexObject {
|
204
211
|
private isEmptyObject;
|
205
212
|
/**
|
@@ -216,11 +223,12 @@ export declare class CertificateHttpMemcachedChallengeOutputReference extends cd
|
|
216
223
|
}
|
217
224
|
export interface CertificateHttpS3Challenge {
|
218
225
|
/**
|
219
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
226
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.19.0/docs/resources/certificate#s3_bucket Certificate#s3_bucket}
|
220
227
|
*/
|
221
228
|
readonly s3Bucket: string;
|
222
229
|
}
|
223
230
|
export declare function certificateHttpS3ChallengeToTerraform(struct?: CertificateHttpS3ChallengeOutputReference | CertificateHttpS3Challenge): any;
|
231
|
+
export declare function certificateHttpS3ChallengeToHclTerraform(struct?: CertificateHttpS3ChallengeOutputReference | CertificateHttpS3Challenge): any;
|
224
232
|
export declare class CertificateHttpS3ChallengeOutputReference extends cdktf.ComplexObject {
|
225
233
|
private isEmptyObject;
|
226
234
|
/**
|
@@ -237,11 +245,12 @@ export declare class CertificateHttpS3ChallengeOutputReference extends cdktf.Com
|
|
237
245
|
}
|
238
246
|
export interface CertificateHttpWebrootChallenge {
|
239
247
|
/**
|
240
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
248
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.19.0/docs/resources/certificate#directory Certificate#directory}
|
241
249
|
*/
|
242
250
|
readonly directory: string;
|
243
251
|
}
|
244
252
|
export declare function certificateHttpWebrootChallengeToTerraform(struct?: CertificateHttpWebrootChallengeOutputReference | CertificateHttpWebrootChallenge): any;
|
253
|
+
export declare function certificateHttpWebrootChallengeToHclTerraform(struct?: CertificateHttpWebrootChallengeOutputReference | CertificateHttpWebrootChallenge): any;
|
245
254
|
export declare class CertificateHttpWebrootChallengeOutputReference extends cdktf.ComplexObject {
|
246
255
|
private isEmptyObject;
|
247
256
|
/**
|
@@ -258,11 +267,12 @@ export declare class CertificateHttpWebrootChallengeOutputReference extends cdkt
|
|
258
267
|
}
|
259
268
|
export interface CertificateTlsChallenge {
|
260
269
|
/**
|
261
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
270
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.19.0/docs/resources/certificate#port Certificate#port}
|
262
271
|
*/
|
263
272
|
readonly port?: number;
|
264
273
|
}
|
265
274
|
export declare function certificateTlsChallengeToTerraform(struct?: CertificateTlsChallengeOutputReference | CertificateTlsChallenge): any;
|
275
|
+
export declare function certificateTlsChallengeToHclTerraform(struct?: CertificateTlsChallengeOutputReference | CertificateTlsChallenge): any;
|
266
276
|
export declare class CertificateTlsChallengeOutputReference extends cdktf.ComplexObject {
|
267
277
|
private isEmptyObject;
|
268
278
|
/**
|
@@ -279,7 +289,7 @@ export declare class CertificateTlsChallengeOutputReference extends cdktf.Comple
|
|
279
289
|
get portInput(): number | undefined;
|
280
290
|
}
|
281
291
|
/**
|
282
|
-
* Represents a {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
292
|
+
* Represents a {@link https://registry.terraform.io/providers/vancluever/acme/2.19.0/docs/resources/certificate acme_certificate}
|
283
293
|
*/
|
284
294
|
export declare class Certificate extends cdktf.TerraformResource {
|
285
295
|
static readonly tfResourceType = "acme_certificate";
|
@@ -287,12 +297,12 @@ export declare class Certificate extends cdktf.TerraformResource {
|
|
287
297
|
* Generates CDKTF code for importing a Certificate resource upon running "cdktf plan <stack-name>"
|
288
298
|
* @param scope The scope in which to define this construct
|
289
299
|
* @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.
|
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.0/docs/resources/certificate#import import section} in the documentation of this resource for the id to use
|
291
301
|
* @param provider? Optional instance of the provider where the Certificate to import is found
|
292
302
|
*/
|
293
303
|
static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider): cdktf.ImportableResource;
|
294
304
|
/**
|
295
|
-
* Create a new {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
305
|
+
* Create a new {@link https://registry.terraform.io/providers/vancluever/acme/2.19.0/docs/resources/certificate acme_certificate} Resource
|
296
306
|
*
|
297
307
|
* @param scope The scope in which to define this construct
|
298
308
|
* @param id The scoped construct ID. Must be unique amongst siblings in the same scope
|
@@ -375,6 +385,11 @@ export declare class Certificate extends cdktf.TerraformResource {
|
|
375
385
|
set revokeCertificateOnDestroy(value: boolean | cdktf.IResolvable);
|
376
386
|
resetRevokeCertificateOnDestroy(): void;
|
377
387
|
get revokeCertificateOnDestroyInput(): boolean | cdktf.IResolvable | undefined;
|
388
|
+
private _revokeCertificateReason?;
|
389
|
+
get revokeCertificateReason(): string;
|
390
|
+
set revokeCertificateReason(value: string);
|
391
|
+
resetRevokeCertificateReason(): void;
|
392
|
+
get revokeCertificateReasonInput(): string | undefined;
|
378
393
|
private _subjectAlternativeNames?;
|
379
394
|
get subjectAlternativeNames(): string[];
|
380
395
|
set subjectAlternativeNames(value: string[]);
|
@@ -413,4 +428,7 @@ export declare class Certificate extends cdktf.TerraformResource {
|
|
413
428
|
protected synthesizeAttributes(): {
|
414
429
|
[name: string]: any;
|
415
430
|
};
|
431
|
+
protected synthesizeHclAttributes(): {
|
432
|
+
[name: string]: any;
|
433
|
+
};
|
416
434
|
}
|