@cdktf/provider-acme 9.0.1 → 9.0.3

Sign up to get free protection for your applications and to get access to all the features.
@@ -6,110 +6,114 @@ 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.17.1/docs/resources/certificate#account_key_pem Certificate#account_key_pem}
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}
10
10
  */
11
11
  readonly accountKeyPem: string;
12
12
  /**
13
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.1/docs/resources/certificate#certificate_p12_password Certificate#certificate_p12_password}
13
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs/resources/certificate#cert_timeout Certificate#cert_timeout}
14
+ */
15
+ readonly certTimeout?: number;
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}
14
18
  */
15
19
  readonly certificateP12Password?: string;
16
20
  /**
17
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.1/docs/resources/certificate#certificate_request_pem Certificate#certificate_request_pem}
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}
18
22
  */
19
23
  readonly certificateRequestPem?: string;
20
24
  /**
21
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.1/docs/resources/certificate#common_name Certificate#common_name}
25
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs/resources/certificate#common_name Certificate#common_name}
22
26
  */
23
27
  readonly commonName?: string;
24
28
  /**
25
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.1/docs/resources/certificate#disable_complete_propagation Certificate#disable_complete_propagation}
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}
26
30
  */
27
31
  readonly disableCompletePropagation?: boolean | cdktf.IResolvable;
28
32
  /**
29
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.1/docs/resources/certificate#id Certificate#id}
33
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs/resources/certificate#id Certificate#id}
30
34
  *
31
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.
32
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.
33
37
  */
34
38
  readonly id?: string;
35
39
  /**
36
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.1/docs/resources/certificate#key_type Certificate#key_type}
40
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs/resources/certificate#key_type Certificate#key_type}
37
41
  */
38
42
  readonly keyType?: string;
39
43
  /**
40
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.1/docs/resources/certificate#min_days_remaining Certificate#min_days_remaining}
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}
41
45
  */
42
46
  readonly minDaysRemaining?: number;
43
47
  /**
44
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.1/docs/resources/certificate#must_staple Certificate#must_staple}
48
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs/resources/certificate#must_staple Certificate#must_staple}
45
49
  */
46
50
  readonly mustStaple?: boolean | cdktf.IResolvable;
47
51
  /**
48
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.1/docs/resources/certificate#pre_check_delay Certificate#pre_check_delay}
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}
49
53
  */
50
54
  readonly preCheckDelay?: number;
51
55
  /**
52
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.1/docs/resources/certificate#preferred_chain Certificate#preferred_chain}
56
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs/resources/certificate#preferred_chain Certificate#preferred_chain}
53
57
  */
54
58
  readonly preferredChain?: string;
55
59
  /**
56
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.1/docs/resources/certificate#recursive_nameservers Certificate#recursive_nameservers}
60
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs/resources/certificate#recursive_nameservers Certificate#recursive_nameservers}
57
61
  */
58
62
  readonly recursiveNameservers?: string[];
59
63
  /**
60
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.1/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.18.0/docs/resources/certificate#revoke_certificate_on_destroy Certificate#revoke_certificate_on_destroy}
61
65
  */
62
66
  readonly revokeCertificateOnDestroy?: boolean | cdktf.IResolvable;
63
67
  /**
64
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.1/docs/resources/certificate#subject_alternative_names Certificate#subject_alternative_names}
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}
65
69
  */
66
70
  readonly subjectAlternativeNames?: string[];
67
71
  /**
68
72
  * dns_challenge block
69
73
  *
70
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.1/docs/resources/certificate#dns_challenge Certificate#dns_challenge}
74
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs/resources/certificate#dns_challenge Certificate#dns_challenge}
71
75
  */
72
76
  readonly dnsChallenge?: CertificateDnsChallenge[] | cdktf.IResolvable;
73
77
  /**
74
78
  * http_challenge block
75
79
  *
76
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.1/docs/resources/certificate#http_challenge Certificate#http_challenge}
80
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs/resources/certificate#http_challenge Certificate#http_challenge}
77
81
  */
78
82
  readonly httpChallenge?: CertificateHttpChallenge;
79
83
  /**
80
84
  * http_memcached_challenge block
81
85
  *
82
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.1/docs/resources/certificate#http_memcached_challenge Certificate#http_memcached_challenge}
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}
83
87
  */
84
88
  readonly httpMemcachedChallenge?: CertificateHttpMemcachedChallenge;
85
89
  /**
86
90
  * http_s3_challenge block
87
91
  *
88
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.1/docs/resources/certificate#http_s3_challenge Certificate#http_s3_challenge}
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}
89
93
  */
90
94
  readonly httpS3Challenge?: CertificateHttpS3Challenge;
91
95
  /**
92
96
  * http_webroot_challenge block
93
97
  *
94
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.1/docs/resources/certificate#http_webroot_challenge Certificate#http_webroot_challenge}
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}
95
99
  */
96
100
  readonly httpWebrootChallenge?: CertificateHttpWebrootChallenge;
97
101
  /**
98
102
  * tls_challenge block
99
103
  *
100
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.1/docs/resources/certificate#tls_challenge Certificate#tls_challenge}
104
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs/resources/certificate#tls_challenge Certificate#tls_challenge}
101
105
  */
102
106
  readonly tlsChallenge?: CertificateTlsChallenge;
103
107
  }
104
108
  export interface CertificateDnsChallenge {
105
109
  /**
106
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.1/docs/resources/certificate#config Certificate#config}
110
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs/resources/certificate#config Certificate#config}
107
111
  */
108
112
  readonly config?: {
109
113
  [key: string]: string;
110
114
  };
111
115
  /**
112
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.1/docs/resources/certificate#provider Certificate#provider}
116
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs/resources/certificate#provider Certificate#provider}
113
117
  */
114
118
  readonly provider: string;
115
119
  }
@@ -160,11 +164,11 @@ export declare class CertificateDnsChallengeList extends cdktf.ComplexList {
160
164
  }
161
165
  export interface CertificateHttpChallenge {
162
166
  /**
163
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.1/docs/resources/certificate#port Certificate#port}
167
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs/resources/certificate#port Certificate#port}
164
168
  */
165
169
  readonly port?: number;
166
170
  /**
167
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.1/docs/resources/certificate#proxy_header Certificate#proxy_header}
171
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs/resources/certificate#proxy_header Certificate#proxy_header}
168
172
  */
169
173
  readonly proxyHeader?: string;
170
174
  }
@@ -191,7 +195,7 @@ export declare class CertificateHttpChallengeOutputReference extends cdktf.Compl
191
195
  }
192
196
  export interface CertificateHttpMemcachedChallenge {
193
197
  /**
194
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.1/docs/resources/certificate#hosts Certificate#hosts}
198
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs/resources/certificate#hosts Certificate#hosts}
195
199
  */
196
200
  readonly hosts: string[];
197
201
  }
@@ -212,7 +216,7 @@ export declare class CertificateHttpMemcachedChallengeOutputReference extends cd
212
216
  }
213
217
  export interface CertificateHttpS3Challenge {
214
218
  /**
215
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.1/docs/resources/certificate#s3_bucket Certificate#s3_bucket}
219
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs/resources/certificate#s3_bucket Certificate#s3_bucket}
216
220
  */
217
221
  readonly s3Bucket: string;
218
222
  }
@@ -233,7 +237,7 @@ export declare class CertificateHttpS3ChallengeOutputReference extends cdktf.Com
233
237
  }
234
238
  export interface CertificateHttpWebrootChallenge {
235
239
  /**
236
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.1/docs/resources/certificate#directory Certificate#directory}
240
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs/resources/certificate#directory Certificate#directory}
237
241
  */
238
242
  readonly directory: string;
239
243
  }
@@ -254,7 +258,7 @@ export declare class CertificateHttpWebrootChallengeOutputReference extends cdkt
254
258
  }
255
259
  export interface CertificateTlsChallenge {
256
260
  /**
257
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.1/docs/resources/certificate#port Certificate#port}
261
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs/resources/certificate#port Certificate#port}
258
262
  */
259
263
  readonly port?: number;
260
264
  }
@@ -275,12 +279,12 @@ export declare class CertificateTlsChallengeOutputReference extends cdktf.Comple
275
279
  get portInput(): number | undefined;
276
280
  }
277
281
  /**
278
- * Represents a {@link https://registry.terraform.io/providers/vancluever/acme/2.17.1/docs/resources/certificate acme_certificate}
282
+ * Represents a {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs/resources/certificate acme_certificate}
279
283
  */
280
284
  export declare class Certificate extends cdktf.TerraformResource {
281
285
  static readonly tfResourceType = "acme_certificate";
282
286
  /**
283
- * Create a new {@link https://registry.terraform.io/providers/vancluever/acme/2.17.1/docs/resources/certificate acme_certificate} Resource
287
+ * Create a new {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs/resources/certificate acme_certificate} Resource
284
288
  *
285
289
  * @param scope The scope in which to define this construct
286
290
  * @param id The scoped construct ID. Must be unique amongst siblings in the same scope
@@ -291,6 +295,11 @@ export declare class Certificate extends cdktf.TerraformResource {
291
295
  get accountKeyPem(): string;
292
296
  set accountKeyPem(value: string);
293
297
  get accountKeyPemInput(): string | undefined;
298
+ private _certTimeout?;
299
+ get certTimeout(): number;
300
+ set certTimeout(value: number);
301
+ resetCertTimeout(): void;
302
+ get certTimeoutInput(): number | undefined;
294
303
  get certificateDomain(): string;
295
304
  get certificateNotAfter(): string;
296
305
  get certificateP12(): string;