@cdktf/provider-acme 6.0.0 → 6.0.2
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/.copywrite.hcl +24 -0
- package/.gitattributes +3 -1
- package/.jsii +238 -238
- package/README.md +2 -1
- package/lib/certificate/index.d.ts +32 -28
- package/lib/certificate/index.js +11 -11
- package/lib/index.d.ts +4 -0
- package/lib/index.js +5 -1
- package/lib/provider/index.d.ts +8 -4
- package/lib/provider/index.js +5 -5
- package/lib/registration/index.d.ts +12 -8
- package/lib/registration/index.js +6 -6
- package/package.json +9 -9
- package/scripts/check-for-upgrades.js +4 -0
- package/scripts/should-release.js +4 -0
- package/API.md +0 -6
- package/docs/API.csharp.md +0 -6
- package/docs/API.go.md +0 -6
- package/docs/API.java.md +0 -6
- package/docs/API.python.md +0 -6
- package/docs/API.typescript.md +0 -6
- package/docs/certificate.csharp.md +0 -3358
- package/docs/certificate.go.md +0 -3358
- package/docs/certificate.java.md +0 -3627
- package/docs/certificate.python.md +0 -3806
- package/docs/certificate.typescript.md +0 -3319
- package/docs/provider.csharp.md +0 -417
- package/docs/provider.go.md +0 -417
- package/docs/provider.java.md +0 -433
- package/docs/provider.python.md +0 -446
- package/docs/provider.typescript.md +0 -414
- package/docs/registration.csharp.md +0 -1143
- package/docs/registration.go.md +0 -1143
- package/docs/registration.java.md +0 -1246
- package/docs/registration.python.md +0 -1309
- package/docs/registration.typescript.md +0 -1128
package/README.md
CHANGED
|
@@ -61,7 +61,8 @@ This project is explicitly not tracking the Terraform acme Provider version 1:1.
|
|
|
61
61
|
These are the upstream dependencies:
|
|
62
62
|
|
|
63
63
|
- [Terraform CDK](https://cdk.tf)
|
|
64
|
-
- [Terraform acme Provider](https://
|
|
64
|
+
- [Terraform acme Provider](https://registry.terraform.io/providers/vancluever/acme/2.10.0)
|
|
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)
|
|
65
66
|
- [Terraform Engine](https://terraform.io)
|
|
66
67
|
|
|
67
68
|
If there are breaking changes (backward incompatible) in any of the above, the major version of this project will be bumped.
|
|
@@ -1,105 +1,109 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) HashiCorp, Inc.
|
|
3
|
+
* SPDX-License-Identifier: MPL-2.0
|
|
4
|
+
*/
|
|
1
5
|
import { Construct } from 'constructs';
|
|
2
6
|
import * as cdktf from 'cdktf';
|
|
3
7
|
export interface CertificateConfig extends cdktf.TerraformMetaArguments {
|
|
4
8
|
/**
|
|
5
|
-
* 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.14.0/docs/resources/certificate#account_key_pem Certificate#account_key_pem}
|
|
6
10
|
*/
|
|
7
11
|
readonly accountKeyPem: string;
|
|
8
12
|
/**
|
|
9
|
-
* 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.14.0/docs/resources/certificate#certificate_p12_password Certificate#certificate_p12_password}
|
|
10
14
|
*/
|
|
11
15
|
readonly certificateP12Password?: string;
|
|
12
16
|
/**
|
|
13
|
-
* 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.14.0/docs/resources/certificate#certificate_request_pem Certificate#certificate_request_pem}
|
|
14
18
|
*/
|
|
15
19
|
readonly certificateRequestPem?: string;
|
|
16
20
|
/**
|
|
17
|
-
* 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.14.0/docs/resources/certificate#common_name Certificate#common_name}
|
|
18
22
|
*/
|
|
19
23
|
readonly commonName?: string;
|
|
20
24
|
/**
|
|
21
|
-
* 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.14.0/docs/resources/certificate#disable_complete_propagation Certificate#disable_complete_propagation}
|
|
22
26
|
*/
|
|
23
27
|
readonly disableCompletePropagation?: boolean | cdktf.IResolvable;
|
|
24
28
|
/**
|
|
25
|
-
* 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.14.0/docs/resources/certificate#id Certificate#id}
|
|
26
30
|
*
|
|
27
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.
|
|
28
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.
|
|
29
33
|
*/
|
|
30
34
|
readonly id?: string;
|
|
31
35
|
/**
|
|
32
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
|
36
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.14.0/docs/resources/certificate#key_type Certificate#key_type}
|
|
33
37
|
*/
|
|
34
38
|
readonly keyType?: string;
|
|
35
39
|
/**
|
|
36
|
-
* 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.14.0/docs/resources/certificate#min_days_remaining Certificate#min_days_remaining}
|
|
37
41
|
*/
|
|
38
42
|
readonly minDaysRemaining?: number;
|
|
39
43
|
/**
|
|
40
|
-
* 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.14.0/docs/resources/certificate#must_staple Certificate#must_staple}
|
|
41
45
|
*/
|
|
42
46
|
readonly mustStaple?: boolean | cdktf.IResolvable;
|
|
43
47
|
/**
|
|
44
|
-
* 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.14.0/docs/resources/certificate#pre_check_delay Certificate#pre_check_delay}
|
|
45
49
|
*/
|
|
46
50
|
readonly preCheckDelay?: number;
|
|
47
51
|
/**
|
|
48
|
-
* 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.14.0/docs/resources/certificate#preferred_chain Certificate#preferred_chain}
|
|
49
53
|
*/
|
|
50
54
|
readonly preferredChain?: string;
|
|
51
55
|
/**
|
|
52
|
-
* 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.14.0/docs/resources/certificate#recursive_nameservers Certificate#recursive_nameservers}
|
|
53
57
|
*/
|
|
54
58
|
readonly recursiveNameservers?: string[];
|
|
55
59
|
/**
|
|
56
|
-
* 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.14.0/docs/resources/certificate#revoke_certificate_on_destroy Certificate#revoke_certificate_on_destroy}
|
|
57
61
|
*/
|
|
58
62
|
readonly revokeCertificateOnDestroy?: boolean | cdktf.IResolvable;
|
|
59
63
|
/**
|
|
60
|
-
* 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.14.0/docs/resources/certificate#subject_alternative_names Certificate#subject_alternative_names}
|
|
61
65
|
*/
|
|
62
66
|
readonly subjectAlternativeNames?: string[];
|
|
63
67
|
/**
|
|
64
68
|
* dns_challenge block
|
|
65
69
|
*
|
|
66
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
|
70
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.14.0/docs/resources/certificate#dns_challenge Certificate#dns_challenge}
|
|
67
71
|
*/
|
|
68
72
|
readonly dnsChallenge?: CertificateDnsChallenge[] | cdktf.IResolvable;
|
|
69
73
|
/**
|
|
70
74
|
* http_challenge block
|
|
71
75
|
*
|
|
72
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
|
76
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.14.0/docs/resources/certificate#http_challenge Certificate#http_challenge}
|
|
73
77
|
*/
|
|
74
78
|
readonly httpChallenge?: CertificateHttpChallenge;
|
|
75
79
|
/**
|
|
76
80
|
* http_memcached_challenge block
|
|
77
81
|
*
|
|
78
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
|
82
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.14.0/docs/resources/certificate#http_memcached_challenge Certificate#http_memcached_challenge}
|
|
79
83
|
*/
|
|
80
84
|
readonly httpMemcachedChallenge?: CertificateHttpMemcachedChallenge;
|
|
81
85
|
/**
|
|
82
86
|
* http_webroot_challenge block
|
|
83
87
|
*
|
|
84
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
|
88
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.14.0/docs/resources/certificate#http_webroot_challenge Certificate#http_webroot_challenge}
|
|
85
89
|
*/
|
|
86
90
|
readonly httpWebrootChallenge?: CertificateHttpWebrootChallenge;
|
|
87
91
|
/**
|
|
88
92
|
* tls_challenge block
|
|
89
93
|
*
|
|
90
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
|
94
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.14.0/docs/resources/certificate#tls_challenge Certificate#tls_challenge}
|
|
91
95
|
*/
|
|
92
96
|
readonly tlsChallenge?: CertificateTlsChallenge;
|
|
93
97
|
}
|
|
94
98
|
export interface CertificateDnsChallenge {
|
|
95
99
|
/**
|
|
96
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
|
100
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.14.0/docs/resources/certificate#config Certificate#config}
|
|
97
101
|
*/
|
|
98
102
|
readonly config?: {
|
|
99
103
|
[key: string]: string;
|
|
100
104
|
};
|
|
101
105
|
/**
|
|
102
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
|
106
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.14.0/docs/resources/certificate#provider Certificate#provider}
|
|
103
107
|
*/
|
|
104
108
|
readonly provider: string;
|
|
105
109
|
}
|
|
@@ -150,11 +154,11 @@ export declare class CertificateDnsChallengeList extends cdktf.ComplexList {
|
|
|
150
154
|
}
|
|
151
155
|
export interface CertificateHttpChallenge {
|
|
152
156
|
/**
|
|
153
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
|
157
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.14.0/docs/resources/certificate#port Certificate#port}
|
|
154
158
|
*/
|
|
155
159
|
readonly port?: number;
|
|
156
160
|
/**
|
|
157
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
|
161
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.14.0/docs/resources/certificate#proxy_header Certificate#proxy_header}
|
|
158
162
|
*/
|
|
159
163
|
readonly proxyHeader?: string;
|
|
160
164
|
}
|
|
@@ -181,7 +185,7 @@ export declare class CertificateHttpChallengeOutputReference extends cdktf.Compl
|
|
|
181
185
|
}
|
|
182
186
|
export interface CertificateHttpMemcachedChallenge {
|
|
183
187
|
/**
|
|
184
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
|
188
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.14.0/docs/resources/certificate#hosts Certificate#hosts}
|
|
185
189
|
*/
|
|
186
190
|
readonly hosts: string[];
|
|
187
191
|
}
|
|
@@ -202,7 +206,7 @@ export declare class CertificateHttpMemcachedChallengeOutputReference extends cd
|
|
|
202
206
|
}
|
|
203
207
|
export interface CertificateHttpWebrootChallenge {
|
|
204
208
|
/**
|
|
205
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
|
209
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.14.0/docs/resources/certificate#directory Certificate#directory}
|
|
206
210
|
*/
|
|
207
211
|
readonly directory: string;
|
|
208
212
|
}
|
|
@@ -223,7 +227,7 @@ export declare class CertificateHttpWebrootChallengeOutputReference extends cdkt
|
|
|
223
227
|
}
|
|
224
228
|
export interface CertificateTlsChallenge {
|
|
225
229
|
/**
|
|
226
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
|
230
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.14.0/docs/resources/certificate#port Certificate#port}
|
|
227
231
|
*/
|
|
228
232
|
readonly port?: number;
|
|
229
233
|
}
|
|
@@ -244,12 +248,12 @@ export declare class CertificateTlsChallengeOutputReference extends cdktf.Comple
|
|
|
244
248
|
get portInput(): number | undefined;
|
|
245
249
|
}
|
|
246
250
|
/**
|
|
247
|
-
* Represents a {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
|
251
|
+
* Represents a {@link https://registry.terraform.io/providers/vancluever/acme/2.14.0/docs/resources/certificate acme_certificate}
|
|
248
252
|
*/
|
|
249
253
|
export declare class Certificate extends cdktf.TerraformResource {
|
|
250
254
|
static readonly tfResourceType = "acme_certificate";
|
|
251
255
|
/**
|
|
252
|
-
* Create a new {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
|
256
|
+
* Create a new {@link https://registry.terraform.io/providers/vancluever/acme/2.14.0/docs/resources/certificate acme_certificate} Resource
|
|
253
257
|
*
|
|
254
258
|
* @param scope The scope in which to define this construct
|
|
255
259
|
* @param id The scoped construct ID. Must be unique amongst siblings in the same scope
|