@cdktf/provider-acme 8.0.0 → 8.0.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -6,104 +6,110 @@ 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.15.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.17.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.15.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.17.0/docs/resources/certificate#certificate_p12_password Certificate#certificate_p12_password}
14
14
  */
15
15
  readonly certificateP12Password?: string;
16
16
  /**
17
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.15.1/docs/resources/certificate#certificate_request_pem Certificate#certificate_request_pem}
17
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.0/docs/resources/certificate#certificate_request_pem Certificate#certificate_request_pem}
18
18
  */
19
19
  readonly certificateRequestPem?: string;
20
20
  /**
21
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.15.1/docs/resources/certificate#common_name Certificate#common_name}
21
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.0/docs/resources/certificate#common_name Certificate#common_name}
22
22
  */
23
23
  readonly commonName?: string;
24
24
  /**
25
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.15.1/docs/resources/certificate#disable_complete_propagation Certificate#disable_complete_propagation}
25
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.0/docs/resources/certificate#disable_complete_propagation Certificate#disable_complete_propagation}
26
26
  */
27
27
  readonly disableCompletePropagation?: boolean | cdktf.IResolvable;
28
28
  /**
29
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.15.1/docs/resources/certificate#id Certificate#id}
29
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.0/docs/resources/certificate#id Certificate#id}
30
30
  *
31
31
  * 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
32
  * 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
33
  */
34
34
  readonly id?: string;
35
35
  /**
36
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.15.1/docs/resources/certificate#key_type Certificate#key_type}
36
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.0/docs/resources/certificate#key_type Certificate#key_type}
37
37
  */
38
38
  readonly keyType?: string;
39
39
  /**
40
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.15.1/docs/resources/certificate#min_days_remaining Certificate#min_days_remaining}
40
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.0/docs/resources/certificate#min_days_remaining Certificate#min_days_remaining}
41
41
  */
42
42
  readonly minDaysRemaining?: number;
43
43
  /**
44
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.15.1/docs/resources/certificate#must_staple Certificate#must_staple}
44
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.0/docs/resources/certificate#must_staple Certificate#must_staple}
45
45
  */
46
46
  readonly mustStaple?: boolean | cdktf.IResolvable;
47
47
  /**
48
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.15.1/docs/resources/certificate#pre_check_delay Certificate#pre_check_delay}
48
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.0/docs/resources/certificate#pre_check_delay Certificate#pre_check_delay}
49
49
  */
50
50
  readonly preCheckDelay?: number;
51
51
  /**
52
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.15.1/docs/resources/certificate#preferred_chain Certificate#preferred_chain}
52
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.0/docs/resources/certificate#preferred_chain Certificate#preferred_chain}
53
53
  */
54
54
  readonly preferredChain?: string;
55
55
  /**
56
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.15.1/docs/resources/certificate#recursive_nameservers Certificate#recursive_nameservers}
56
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.0/docs/resources/certificate#recursive_nameservers Certificate#recursive_nameservers}
57
57
  */
58
58
  readonly recursiveNameservers?: string[];
59
59
  /**
60
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.15.1/docs/resources/certificate#revoke_certificate_on_destroy Certificate#revoke_certificate_on_destroy}
60
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.0/docs/resources/certificate#revoke_certificate_on_destroy Certificate#revoke_certificate_on_destroy}
61
61
  */
62
62
  readonly revokeCertificateOnDestroy?: boolean | cdktf.IResolvable;
63
63
  /**
64
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.15.1/docs/resources/certificate#subject_alternative_names Certificate#subject_alternative_names}
64
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.0/docs/resources/certificate#subject_alternative_names Certificate#subject_alternative_names}
65
65
  */
66
66
  readonly subjectAlternativeNames?: string[];
67
67
  /**
68
68
  * dns_challenge block
69
69
  *
70
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.15.1/docs/resources/certificate#dns_challenge Certificate#dns_challenge}
70
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.0/docs/resources/certificate#dns_challenge Certificate#dns_challenge}
71
71
  */
72
72
  readonly dnsChallenge?: CertificateDnsChallenge[] | cdktf.IResolvable;
73
73
  /**
74
74
  * http_challenge block
75
75
  *
76
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.15.1/docs/resources/certificate#http_challenge Certificate#http_challenge}
76
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.0/docs/resources/certificate#http_challenge Certificate#http_challenge}
77
77
  */
78
78
  readonly httpChallenge?: CertificateHttpChallenge;
79
79
  /**
80
80
  * http_memcached_challenge block
81
81
  *
82
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.15.1/docs/resources/certificate#http_memcached_challenge Certificate#http_memcached_challenge}
82
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.0/docs/resources/certificate#http_memcached_challenge Certificate#http_memcached_challenge}
83
83
  */
84
84
  readonly httpMemcachedChallenge?: CertificateHttpMemcachedChallenge;
85
85
  /**
86
+ * http_s3_challenge block
87
+ *
88
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.0/docs/resources/certificate#http_s3_challenge Certificate#http_s3_challenge}
89
+ */
90
+ readonly httpS3Challenge?: CertificateHttpS3Challenge;
91
+ /**
86
92
  * http_webroot_challenge block
87
93
  *
88
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.15.1/docs/resources/certificate#http_webroot_challenge Certificate#http_webroot_challenge}
94
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.0/docs/resources/certificate#http_webroot_challenge Certificate#http_webroot_challenge}
89
95
  */
90
96
  readonly httpWebrootChallenge?: CertificateHttpWebrootChallenge;
91
97
  /**
92
98
  * tls_challenge block
93
99
  *
94
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.15.1/docs/resources/certificate#tls_challenge Certificate#tls_challenge}
100
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.0/docs/resources/certificate#tls_challenge Certificate#tls_challenge}
95
101
  */
96
102
  readonly tlsChallenge?: CertificateTlsChallenge;
97
103
  }
98
104
  export interface CertificateDnsChallenge {
99
105
  /**
100
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.15.1/docs/resources/certificate#config Certificate#config}
106
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.0/docs/resources/certificate#config Certificate#config}
101
107
  */
102
108
  readonly config?: {
103
109
  [key: string]: string;
104
110
  };
105
111
  /**
106
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.15.1/docs/resources/certificate#provider Certificate#provider}
112
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.0/docs/resources/certificate#provider Certificate#provider}
107
113
  */
108
114
  readonly provider: string;
109
115
  }
@@ -154,11 +160,11 @@ export declare class CertificateDnsChallengeList extends cdktf.ComplexList {
154
160
  }
155
161
  export interface CertificateHttpChallenge {
156
162
  /**
157
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.15.1/docs/resources/certificate#port Certificate#port}
163
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.0/docs/resources/certificate#port Certificate#port}
158
164
  */
159
165
  readonly port?: number;
160
166
  /**
161
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.15.1/docs/resources/certificate#proxy_header Certificate#proxy_header}
167
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.0/docs/resources/certificate#proxy_header Certificate#proxy_header}
162
168
  */
163
169
  readonly proxyHeader?: string;
164
170
  }
@@ -185,7 +191,7 @@ export declare class CertificateHttpChallengeOutputReference extends cdktf.Compl
185
191
  }
186
192
  export interface CertificateHttpMemcachedChallenge {
187
193
  /**
188
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.15.1/docs/resources/certificate#hosts Certificate#hosts}
194
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.0/docs/resources/certificate#hosts Certificate#hosts}
189
195
  */
190
196
  readonly hosts: string[];
191
197
  }
@@ -204,9 +210,30 @@ export declare class CertificateHttpMemcachedChallengeOutputReference extends cd
204
210
  set hosts(value: string[]);
205
211
  get hostsInput(): string[] | undefined;
206
212
  }
213
+ export interface CertificateHttpS3Challenge {
214
+ /**
215
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.0/docs/resources/certificate#s3_bucket Certificate#s3_bucket}
216
+ */
217
+ readonly s3Bucket: string;
218
+ }
219
+ export declare function certificateHttpS3ChallengeToTerraform(struct?: CertificateHttpS3ChallengeOutputReference | CertificateHttpS3Challenge): any;
220
+ export declare class CertificateHttpS3ChallengeOutputReference extends cdktf.ComplexObject {
221
+ private isEmptyObject;
222
+ /**
223
+ * @param terraformResource The parent resource
224
+ * @param terraformAttribute The attribute on the parent resource this class is referencing
225
+ */
226
+ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string);
227
+ get internalValue(): CertificateHttpS3Challenge | undefined;
228
+ set internalValue(value: CertificateHttpS3Challenge | undefined);
229
+ private _s3Bucket?;
230
+ get s3Bucket(): string;
231
+ set s3Bucket(value: string);
232
+ get s3BucketInput(): string | undefined;
233
+ }
207
234
  export interface CertificateHttpWebrootChallenge {
208
235
  /**
209
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.15.1/docs/resources/certificate#directory Certificate#directory}
236
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.0/docs/resources/certificate#directory Certificate#directory}
210
237
  */
211
238
  readonly directory: string;
212
239
  }
@@ -227,7 +254,7 @@ export declare class CertificateHttpWebrootChallengeOutputReference extends cdkt
227
254
  }
228
255
  export interface CertificateTlsChallenge {
229
256
  /**
230
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.15.1/docs/resources/certificate#port Certificate#port}
257
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.0/docs/resources/certificate#port Certificate#port}
231
258
  */
232
259
  readonly port?: number;
233
260
  }
@@ -248,12 +275,12 @@ export declare class CertificateTlsChallengeOutputReference extends cdktf.Comple
248
275
  get portInput(): number | undefined;
249
276
  }
250
277
  /**
251
- * Represents a {@link https://registry.terraform.io/providers/vancluever/acme/2.15.1/docs/resources/certificate acme_certificate}
278
+ * Represents a {@link https://registry.terraform.io/providers/vancluever/acme/2.17.0/docs/resources/certificate acme_certificate}
252
279
  */
253
280
  export declare class Certificate extends cdktf.TerraformResource {
254
281
  static readonly tfResourceType = "acme_certificate";
255
282
  /**
256
- * Create a new {@link https://registry.terraform.io/providers/vancluever/acme/2.15.1/docs/resources/certificate acme_certificate} Resource
283
+ * Create a new {@link https://registry.terraform.io/providers/vancluever/acme/2.17.0/docs/resources/certificate acme_certificate} Resource
257
284
  *
258
285
  * @param scope The scope in which to define this construct
259
286
  * @param id The scoped construct ID. Must be unique amongst siblings in the same scope
@@ -351,6 +378,11 @@ export declare class Certificate extends cdktf.TerraformResource {
351
378
  putHttpMemcachedChallenge(value: CertificateHttpMemcachedChallenge): void;
352
379
  resetHttpMemcachedChallenge(): void;
353
380
  get httpMemcachedChallengeInput(): CertificateHttpMemcachedChallenge | undefined;
381
+ private _httpS3Challenge;
382
+ get httpS3Challenge(): CertificateHttpS3ChallengeOutputReference;
383
+ putHttpS3Challenge(value: CertificateHttpS3Challenge): void;
384
+ resetHttpS3Challenge(): void;
385
+ get httpS3ChallengeInput(): CertificateHttpS3Challenge | undefined;
354
386
  private _httpWebrootChallenge;
355
387
  get httpWebrootChallenge(): CertificateHttpWebrootChallengeOutputReference;
356
388
  putHttpWebrootChallenge(value: CertificateHttpWebrootChallenge): void;