@cdktf/provider-acme 10.1.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 +236 -170
- package/LICENSE +1 -1
- package/README.md +11 -15
- package/lib/certificate/index.d.ts +9 -0
- package/lib/certificate/index.js +274 -10
- package/lib/provider/index.d.ts +3 -0
- package/lib/provider/index.js +20 -2
- package/lib/registration/index.d.ts +4 -0
- package/lib/registration/index.js +59 -4
- package/package.json +11 -9
- package/.gitattributes +0 -36
package/LICENSE
CHANGED
package/README.md
CHANGED
@@ -1,9 +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
|
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.0/docs) bindings for [CDK for Terraform](https://cdk.tf).
|
7
5
|
|
8
6
|
## Available Packages
|
9
7
|
|
@@ -37,7 +35,6 @@ 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.
|
@@ -58,33 +55,32 @@ You can also visit a hosted version of the documentation on [constructs.dev](htt
|
|
58
55
|
|
59
56
|
## Versioning
|
60
57
|
|
61
|
-
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).
|
62
59
|
|
63
60
|
These are the upstream dependencies:
|
64
61
|
|
65
|
-
- [Terraform
|
66
|
-
- [Terraform acme
|
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)
|
62
|
+
- [CDK for Terraform](https://cdk.tf)
|
63
|
+
- [Terraform acme provider](https://registry.terraform.io/providers/vancluever/acme/2.19.0)
|
68
64
|
- [Terraform Engine](https://terraform.io)
|
69
65
|
|
70
66
|
If there are breaking changes (backward incompatible) in any of the above, the major version of this project will be bumped.
|
71
67
|
|
72
68
|
## Features / Issues / Bugs
|
73
69
|
|
74
|
-
Please report bugs and issues to the [
|
70
|
+
Please report bugs and issues to the [CDK for Terraform](https://cdk.tf) project:
|
75
71
|
|
76
72
|
- [Create bug report](https://cdk.tf/bug)
|
77
73
|
- [Create feature request](https://cdk.tf/feature)
|
78
74
|
|
79
75
|
## Contributing
|
80
76
|
|
81
|
-
###
|
77
|
+
### Projen
|
82
78
|
|
83
|
-
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.
|
84
80
|
|
85
|
-
### cdktf-provider-project based on
|
81
|
+
### cdktf-provider-project based on Projen
|
86
82
|
|
87
|
-
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.
|
88
84
|
|
89
85
|
### Provider Version
|
90
86
|
|
@@ -92,4 +88,4 @@ The provider version can be adjusted in [./.projenrc.js](./.projenrc.js).
|
|
92
88
|
|
93
89
|
### Repository Management
|
94
90
|
|
95
|
-
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/).
|
@@ -122,6 +122,7 @@ export interface CertificateDnsChallenge {
|
|
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?;
|
@@ -177,6 +178,7 @@ export interface CertificateHttpChallenge {
|
|
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
|
/**
|
@@ -204,6 +206,7 @@ export interface CertificateHttpMemcachedChallenge {
|
|
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
|
/**
|
@@ -225,6 +228,7 @@ export interface CertificateHttpS3Challenge {
|
|
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
|
/**
|
@@ -246,6 +250,7 @@ export interface CertificateHttpWebrootChallenge {
|
|
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
|
/**
|
@@ -267,6 +272,7 @@ export interface CertificateTlsChallenge {
|
|
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
|
/**
|
@@ -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
|
}
|