@cdktf/provider-acme 11.13.0 → 12.0.1
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 +65 -65
- package/README.md +3 -3
- package/lib/certificate/index.d.ts +34 -34
- package/lib/certificate/index.js +13 -13
- package/lib/data-acme-server-url/index.d.ts +4 -4
- package/lib/data-acme-server-url/index.js +6 -6
- package/lib/provider/index.d.ts +5 -5
- package/lib/provider/index.js +6 -6
- package/lib/registration/index.d.ts +12 -12
- package/lib/registration/index.js +7 -7
- package/package.json +18 -18
package/.jsii
CHANGED
@@ -8,8 +8,8 @@
|
|
8
8
|
"url": "https://hashicorp.com"
|
9
9
|
},
|
10
10
|
"dependencies": {
|
11
|
-
"cdktf": "^0.
|
12
|
-
"constructs": "^10.
|
11
|
+
"cdktf": "^0.21.0",
|
12
|
+
"constructs": "^10.4.2"
|
13
13
|
},
|
14
14
|
"dependencyClosure": {
|
15
15
|
"cdktf": {
|
@@ -72,7 +72,7 @@
|
|
72
72
|
"stability": "stable"
|
73
73
|
},
|
74
74
|
"homepage": "https://github.com/cdktf/cdktf-provider-acme.git",
|
75
|
-
"jsiiVersion": "5.
|
75
|
+
"jsiiVersion": "5.7.18 (build 7d9997b)",
|
76
76
|
"keywords": [
|
77
77
|
"acme",
|
78
78
|
"cdk",
|
@@ -91,7 +91,7 @@
|
|
91
91
|
},
|
92
92
|
"name": "@cdktf/provider-acme",
|
93
93
|
"readme": {
|
94
|
-
"markdown": "\n# CDKTF prebuilt bindings for vancluever/acme provider version 2.32.
|
94
|
+
"markdown": "\n# CDKTF prebuilt bindings for vancluever/acme provider version 2.32.1\n\nThis repo builds and publishes the [Terraform acme provider](https://registry.terraform.io/providers/vancluever/acme/2.32.1/docs) bindings for [CDK for Terraform](https://cdk.tf).\n\n## Available Packages\n\n### NPM\n\nThe npm package is available at [https://www.npmjs.com/package/@cdktf/provider-acme](https://www.npmjs.com/package/@cdktf/provider-acme).\n\n`npm install @cdktf/provider-acme`\n\n### PyPI\n\nThe PyPI package is available at [https://pypi.org/project/cdktf-cdktf-provider-acme](https://pypi.org/project/cdktf-cdktf-provider-acme).\n\n`pipenv install cdktf-cdktf-provider-acme`\n\n### Nuget\n\nThe Nuget package is available at [https://www.nuget.org/packages/HashiCorp.Cdktf.Providers.Acme](https://www.nuget.org/packages/HashiCorp.Cdktf.Providers.Acme).\n\n`dotnet add package HashiCorp.Cdktf.Providers.Acme`\n\n### Maven\n\nThe Maven package is available at [https://mvnrepository.com/artifact/com.hashicorp/cdktf-provider-acme](https://mvnrepository.com/artifact/com.hashicorp/cdktf-provider-acme).\n\n```\n<dependency>\n <groupId>com.hashicorp</groupId>\n <artifactId>cdktf-provider-acme</artifactId>\n <version>[REPLACE WITH DESIRED VERSION]</version>\n</dependency>\n```\n\n### Go\n\nThe go package is generated into the [`github.com/cdktf/cdktf-provider-acme-go`](https://github.com/cdktf/cdktf-provider-acme-go) package.\n\n`go get github.com/cdktf/cdktf-provider-acme-go/acme/<version>`\n\nWhere `<version>` is the version of the prebuilt provider you would like to use e.g. `v11`. The full module name can be found\nwithin the [go.mod](https://github.com/cdktf/cdktf-provider-acme-go/blob/main/acme/go.mod#L1) file.\n\n## Docs\n\nFind auto-generated docs for this provider here:\n\n- [Typescript](./docs/API.typescript.md)\n- [Python](./docs/API.python.md)\n- [Java](./docs/API.java.md)\n- [C#](./docs/API.csharp.md)\n- [Go](./docs/API.go.md)\n\nYou can also visit a hosted version of the documentation on [constructs.dev](https://constructs.dev/packages/@cdktf/provider-acme).\n\n## Versioning\n\nThis 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).\n\nThese are the upstream dependencies:\n\n- [CDK for Terraform](https://cdk.tf)\n- [Terraform acme provider](https://registry.terraform.io/providers/vancluever/acme/2.32.1)\n- [Terraform Engine](https://terraform.io)\n\nIf there are breaking changes (backward incompatible) in any of the above, the major version of this project will be bumped.\n\n## Features / Issues / Bugs\n\nPlease report bugs and issues to the [CDK for Terraform](https://cdk.tf) project:\n\n- [Create bug report](https://cdk.tf/bug)\n- [Create feature request](https://cdk.tf/feature)\n\n## Contributing\n\n### Projen\n\nThis is mostly based on [Projen](https://github.com/projen/projen), which takes care of generating the entire repository.\n\n### cdktf-provider-project based on Projen\n\nThere's a custom [project builder](https://github.com/cdktf/cdktf-provider-project) which encapsulate the common settings for all `cdktf` prebuilt providers.\n\n### Provider Version\n\nThe provider version can be adjusted in [./.projenrc.js](./.projenrc.js).\n\n### Repository Management\n\nThe repository is managed by [CDKTF Repository Manager](https://github.com/cdktf/cdktf-repository-manager/).\n"
|
95
95
|
},
|
96
96
|
"repository": {
|
97
97
|
"type": "git",
|
@@ -105,7 +105,7 @@
|
|
105
105
|
"line": 7
|
106
106
|
},
|
107
107
|
"readme": {
|
108
|
-
"markdown": "# `acme_certificate`\n\nRefer to the Terraform Registry for docs: [`acme_certificate`](https://registry.terraform.io/providers/vancluever/acme/2.32.
|
108
|
+
"markdown": "# `acme_certificate`\n\nRefer to the Terraform Registry for docs: [`acme_certificate`](https://registry.terraform.io/providers/vancluever/acme/2.32.1/docs/resources/certificate).\n"
|
109
109
|
},
|
110
110
|
"symbolId": "src/certificate/index:"
|
111
111
|
},
|
@@ -115,7 +115,7 @@
|
|
115
115
|
"line": 9
|
116
116
|
},
|
117
117
|
"readme": {
|
118
|
-
"markdown": "# `data_acme_server_url`\n\nRefer to the Terraform Registry for docs: [`data_acme_server_url`](https://registry.terraform.io/providers/vancluever/acme/2.32.
|
118
|
+
"markdown": "# `data_acme_server_url`\n\nRefer to the Terraform Registry for docs: [`data_acme_server_url`](https://registry.terraform.io/providers/vancluever/acme/2.32.1/docs/data-sources/server_url).\n"
|
119
119
|
},
|
120
120
|
"symbolId": "src/data-acme-server-url/index:"
|
121
121
|
},
|
@@ -125,7 +125,7 @@
|
|
125
125
|
"line": 10
|
126
126
|
},
|
127
127
|
"readme": {
|
128
|
-
"markdown": "# `provider`\n\nRefer to the Terraform Registry for docs: [`acme`](https://registry.terraform.io/providers/vancluever/acme/2.32.
|
128
|
+
"markdown": "# `provider`\n\nRefer to the Terraform Registry for docs: [`acme`](https://registry.terraform.io/providers/vancluever/acme/2.32.1/docs).\n"
|
129
129
|
},
|
130
130
|
"symbolId": "src/provider/index:"
|
131
131
|
},
|
@@ -135,7 +135,7 @@
|
|
135
135
|
"line": 8
|
136
136
|
},
|
137
137
|
"readme": {
|
138
|
-
"markdown": "# `acme_registration`\n\nRefer to the Terraform Registry for docs: [`acme_registration`](https://registry.terraform.io/providers/vancluever/acme/2.32.
|
138
|
+
"markdown": "# `acme_registration`\n\nRefer to the Terraform Registry for docs: [`acme_registration`](https://registry.terraform.io/providers/vancluever/acme/2.32.1/docs/resources/registration).\n"
|
139
139
|
},
|
140
140
|
"symbolId": "src/registration/index:"
|
141
141
|
}
|
@@ -170,13 +170,13 @@
|
|
170
170
|
"base": "cdktf.TerraformResource",
|
171
171
|
"docs": {
|
172
172
|
"stability": "stable",
|
173
|
-
"summary": "Represents a {@link https://registry.terraform.io/providers/vancluever/acme/2.32.
|
173
|
+
"summary": "Represents a {@link https://registry.terraform.io/providers/vancluever/acme/2.32.1/docs/resources/certificate acme_certificate}."
|
174
174
|
},
|
175
175
|
"fqn": "@cdktf/provider-acme.certificate.Certificate",
|
176
176
|
"initializer": {
|
177
177
|
"docs": {
|
178
178
|
"stability": "stable",
|
179
|
-
"summary": "Create a new {@link https://registry.terraform.io/providers/vancluever/acme/2.32.
|
179
|
+
"summary": "Create a new {@link https://registry.terraform.io/providers/vancluever/acme/2.32.1/docs/resources/certificate acme_certificate} Resource."
|
180
180
|
},
|
181
181
|
"locationInModule": {
|
182
182
|
"filename": "src/certificate/index.ts",
|
@@ -247,7 +247,7 @@
|
|
247
247
|
},
|
248
248
|
{
|
249
249
|
"docs": {
|
250
|
-
"remarks": "Refer to the {@link https://registry.terraform.io/providers/vancluever/acme/2.32.
|
250
|
+
"remarks": "Refer to the {@link https://registry.terraform.io/providers/vancluever/acme/2.32.1/docs/resources/certificate#import import section} in the documentation of this resource for the id to use",
|
251
251
|
"summary": "The id of the existing Certificate that should be imported."
|
252
252
|
},
|
253
253
|
"name": "importFromId",
|
@@ -1554,7 +1554,7 @@
|
|
1554
1554
|
"abstract": true,
|
1555
1555
|
"docs": {
|
1556
1556
|
"stability": "stable",
|
1557
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.
|
1557
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.1/docs/resources/certificate#account_key_pem Certificate#account_key_pem}."
|
1558
1558
|
},
|
1559
1559
|
"immutable": true,
|
1560
1560
|
"locationInModule": {
|
@@ -1570,7 +1570,7 @@
|
|
1570
1570
|
"abstract": true,
|
1571
1571
|
"docs": {
|
1572
1572
|
"stability": "stable",
|
1573
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.
|
1573
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.1/docs/resources/certificate#certificate_p12_password Certificate#certificate_p12_password}."
|
1574
1574
|
},
|
1575
1575
|
"immutable": true,
|
1576
1576
|
"locationInModule": {
|
@@ -1587,7 +1587,7 @@
|
|
1587
1587
|
"abstract": true,
|
1588
1588
|
"docs": {
|
1589
1589
|
"stability": "stable",
|
1590
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.
|
1590
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.1/docs/resources/certificate#certificate_request_pem Certificate#certificate_request_pem}."
|
1591
1591
|
},
|
1592
1592
|
"immutable": true,
|
1593
1593
|
"locationInModule": {
|
@@ -1604,7 +1604,7 @@
|
|
1604
1604
|
"abstract": true,
|
1605
1605
|
"docs": {
|
1606
1606
|
"stability": "stable",
|
1607
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.
|
1607
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.1/docs/resources/certificate#cert_timeout Certificate#cert_timeout}."
|
1608
1608
|
},
|
1609
1609
|
"immutable": true,
|
1610
1610
|
"locationInModule": {
|
@@ -1621,7 +1621,7 @@
|
|
1621
1621
|
"abstract": true,
|
1622
1622
|
"docs": {
|
1623
1623
|
"stability": "stable",
|
1624
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.
|
1624
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.1/docs/resources/certificate#common_name Certificate#common_name}."
|
1625
1625
|
},
|
1626
1626
|
"immutable": true,
|
1627
1627
|
"locationInModule": {
|
@@ -1638,7 +1638,7 @@
|
|
1638
1638
|
"abstract": true,
|
1639
1639
|
"docs": {
|
1640
1640
|
"stability": "stable",
|
1641
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.
|
1641
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.1/docs/resources/certificate#disable_complete_propagation Certificate#disable_complete_propagation}."
|
1642
1642
|
},
|
1643
1643
|
"immutable": true,
|
1644
1644
|
"locationInModule": {
|
@@ -1663,7 +1663,7 @@
|
|
1663
1663
|
{
|
1664
1664
|
"abstract": true,
|
1665
1665
|
"docs": {
|
1666
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.
|
1666
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.1/docs/resources/certificate#dns_challenge Certificate#dns_challenge}",
|
1667
1667
|
"stability": "stable",
|
1668
1668
|
"summary": "dns_challenge block."
|
1669
1669
|
},
|
@@ -1695,7 +1695,7 @@
|
|
1695
1695
|
{
|
1696
1696
|
"abstract": true,
|
1697
1697
|
"docs": {
|
1698
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.
|
1698
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.1/docs/resources/certificate#http_challenge Certificate#http_challenge}",
|
1699
1699
|
"stability": "stable",
|
1700
1700
|
"summary": "http_challenge block."
|
1701
1701
|
},
|
@@ -1713,7 +1713,7 @@
|
|
1713
1713
|
{
|
1714
1714
|
"abstract": true,
|
1715
1715
|
"docs": {
|
1716
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.
|
1716
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.1/docs/resources/certificate#http_memcached_challenge Certificate#http_memcached_challenge}",
|
1717
1717
|
"stability": "stable",
|
1718
1718
|
"summary": "http_memcached_challenge block."
|
1719
1719
|
},
|
@@ -1731,7 +1731,7 @@
|
|
1731
1731
|
{
|
1732
1732
|
"abstract": true,
|
1733
1733
|
"docs": {
|
1734
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.
|
1734
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.1/docs/resources/certificate#http_s3_challenge Certificate#http_s3_challenge}",
|
1735
1735
|
"stability": "stable",
|
1736
1736
|
"summary": "http_s3_challenge block."
|
1737
1737
|
},
|
@@ -1749,7 +1749,7 @@
|
|
1749
1749
|
{
|
1750
1750
|
"abstract": true,
|
1751
1751
|
"docs": {
|
1752
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.
|
1752
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.1/docs/resources/certificate#http_webroot_challenge Certificate#http_webroot_challenge}",
|
1753
1753
|
"stability": "stable",
|
1754
1754
|
"summary": "http_webroot_challenge block."
|
1755
1755
|
},
|
@@ -1769,7 +1769,7 @@
|
|
1769
1769
|
"docs": {
|
1770
1770
|
"remarks": "Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2.\nIf 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.",
|
1771
1771
|
"stability": "stable",
|
1772
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.
|
1772
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.1/docs/resources/certificate#id Certificate#id}."
|
1773
1773
|
},
|
1774
1774
|
"immutable": true,
|
1775
1775
|
"locationInModule": {
|
@@ -1786,7 +1786,7 @@
|
|
1786
1786
|
"abstract": true,
|
1787
1787
|
"docs": {
|
1788
1788
|
"stability": "stable",
|
1789
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.
|
1789
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.1/docs/resources/certificate#key_type Certificate#key_type}."
|
1790
1790
|
},
|
1791
1791
|
"immutable": true,
|
1792
1792
|
"locationInModule": {
|
@@ -1803,7 +1803,7 @@
|
|
1803
1803
|
"abstract": true,
|
1804
1804
|
"docs": {
|
1805
1805
|
"stability": "stable",
|
1806
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.
|
1806
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.1/docs/resources/certificate#min_days_remaining Certificate#min_days_remaining}."
|
1807
1807
|
},
|
1808
1808
|
"immutable": true,
|
1809
1809
|
"locationInModule": {
|
@@ -1820,7 +1820,7 @@
|
|
1820
1820
|
"abstract": true,
|
1821
1821
|
"docs": {
|
1822
1822
|
"stability": "stable",
|
1823
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.
|
1823
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.1/docs/resources/certificate#must_staple Certificate#must_staple}."
|
1824
1824
|
},
|
1825
1825
|
"immutable": true,
|
1826
1826
|
"locationInModule": {
|
@@ -1846,7 +1846,7 @@
|
|
1846
1846
|
"abstract": true,
|
1847
1847
|
"docs": {
|
1848
1848
|
"stability": "stable",
|
1849
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.
|
1849
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.1/docs/resources/certificate#pre_check_delay Certificate#pre_check_delay}."
|
1850
1850
|
},
|
1851
1851
|
"immutable": true,
|
1852
1852
|
"locationInModule": {
|
@@ -1863,7 +1863,7 @@
|
|
1863
1863
|
"abstract": true,
|
1864
1864
|
"docs": {
|
1865
1865
|
"stability": "stable",
|
1866
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.
|
1866
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.1/docs/resources/certificate#preferred_chain Certificate#preferred_chain}."
|
1867
1867
|
},
|
1868
1868
|
"immutable": true,
|
1869
1869
|
"locationInModule": {
|
@@ -1880,7 +1880,7 @@
|
|
1880
1880
|
"abstract": true,
|
1881
1881
|
"docs": {
|
1882
1882
|
"stability": "stable",
|
1883
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.
|
1883
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.1/docs/resources/certificate#profile Certificate#profile}."
|
1884
1884
|
},
|
1885
1885
|
"immutable": true,
|
1886
1886
|
"locationInModule": {
|
@@ -1897,7 +1897,7 @@
|
|
1897
1897
|
"abstract": true,
|
1898
1898
|
"docs": {
|
1899
1899
|
"stability": "stable",
|
1900
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.
|
1900
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.1/docs/resources/certificate#recursive_nameservers Certificate#recursive_nameservers}."
|
1901
1901
|
},
|
1902
1902
|
"immutable": true,
|
1903
1903
|
"locationInModule": {
|
@@ -1919,7 +1919,7 @@
|
|
1919
1919
|
"abstract": true,
|
1920
1920
|
"docs": {
|
1921
1921
|
"stability": "stable",
|
1922
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.
|
1922
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.1/docs/resources/certificate#revoke_certificate_on_destroy Certificate#revoke_certificate_on_destroy}."
|
1923
1923
|
},
|
1924
1924
|
"immutable": true,
|
1925
1925
|
"locationInModule": {
|
@@ -1945,7 +1945,7 @@
|
|
1945
1945
|
"abstract": true,
|
1946
1946
|
"docs": {
|
1947
1947
|
"stability": "stable",
|
1948
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.
|
1948
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.1/docs/resources/certificate#revoke_certificate_reason Certificate#revoke_certificate_reason}."
|
1949
1949
|
},
|
1950
1950
|
"immutable": true,
|
1951
1951
|
"locationInModule": {
|
@@ -1962,7 +1962,7 @@
|
|
1962
1962
|
"abstract": true,
|
1963
1963
|
"docs": {
|
1964
1964
|
"stability": "stable",
|
1965
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.
|
1965
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.1/docs/resources/certificate#subject_alternative_names Certificate#subject_alternative_names}."
|
1966
1966
|
},
|
1967
1967
|
"immutable": true,
|
1968
1968
|
"locationInModule": {
|
@@ -1983,7 +1983,7 @@
|
|
1983
1983
|
{
|
1984
1984
|
"abstract": true,
|
1985
1985
|
"docs": {
|
1986
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.
|
1986
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.1/docs/resources/certificate#tls_challenge Certificate#tls_challenge}",
|
1987
1987
|
"stability": "stable",
|
1988
1988
|
"summary": "tls_challenge block."
|
1989
1989
|
},
|
@@ -2020,7 +2020,7 @@
|
|
2020
2020
|
"abstract": true,
|
2021
2021
|
"docs": {
|
2022
2022
|
"stability": "stable",
|
2023
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.
|
2023
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.1/docs/resources/certificate#provider Certificate#provider}."
|
2024
2024
|
},
|
2025
2025
|
"immutable": true,
|
2026
2026
|
"locationInModule": {
|
@@ -2036,7 +2036,7 @@
|
|
2036
2036
|
"abstract": true,
|
2037
2037
|
"docs": {
|
2038
2038
|
"stability": "stable",
|
2039
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.
|
2039
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.1/docs/resources/certificate#config Certificate#config}."
|
2040
2040
|
},
|
2041
2041
|
"immutable": true,
|
2042
2042
|
"locationInModule": {
|
@@ -2402,7 +2402,7 @@
|
|
2402
2402
|
"abstract": true,
|
2403
2403
|
"docs": {
|
2404
2404
|
"stability": "stable",
|
2405
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.
|
2405
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.1/docs/resources/certificate#port Certificate#port}."
|
2406
2406
|
},
|
2407
2407
|
"immutable": true,
|
2408
2408
|
"locationInModule": {
|
@@ -2419,7 +2419,7 @@
|
|
2419
2419
|
"abstract": true,
|
2420
2420
|
"docs": {
|
2421
2421
|
"stability": "stable",
|
2422
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.
|
2422
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.1/docs/resources/certificate#proxy_header Certificate#proxy_header}."
|
2423
2423
|
},
|
2424
2424
|
"immutable": true,
|
2425
2425
|
"locationInModule": {
|
@@ -2593,7 +2593,7 @@
|
|
2593
2593
|
"abstract": true,
|
2594
2594
|
"docs": {
|
2595
2595
|
"stability": "stable",
|
2596
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.
|
2596
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.1/docs/resources/certificate#hosts Certificate#hosts}."
|
2597
2597
|
},
|
2598
2598
|
"immutable": true,
|
2599
2599
|
"locationInModule": {
|
@@ -2731,7 +2731,7 @@
|
|
2731
2731
|
"abstract": true,
|
2732
2732
|
"docs": {
|
2733
2733
|
"stability": "stable",
|
2734
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.
|
2734
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.1/docs/resources/certificate#s3_bucket Certificate#s3_bucket}."
|
2735
2735
|
},
|
2736
2736
|
"immutable": true,
|
2737
2737
|
"locationInModule": {
|
@@ -2854,7 +2854,7 @@
|
|
2854
2854
|
"abstract": true,
|
2855
2855
|
"docs": {
|
2856
2856
|
"stability": "stable",
|
2857
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.
|
2857
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.1/docs/resources/certificate#directory Certificate#directory}."
|
2858
2858
|
},
|
2859
2859
|
"immutable": true,
|
2860
2860
|
"locationInModule": {
|
@@ -2977,7 +2977,7 @@
|
|
2977
2977
|
"abstract": true,
|
2978
2978
|
"docs": {
|
2979
2979
|
"stability": "stable",
|
2980
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.
|
2980
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.1/docs/resources/certificate#port Certificate#port}."
|
2981
2981
|
},
|
2982
2982
|
"immutable": true,
|
2983
2983
|
"locationInModule": {
|
@@ -3099,13 +3099,13 @@
|
|
3099
3099
|
"base": "cdktf.TerraformDataSource",
|
3100
3100
|
"docs": {
|
3101
3101
|
"stability": "stable",
|
3102
|
-
"summary": "Represents a {@link https://registry.terraform.io/providers/vancluever/acme/2.32.
|
3102
|
+
"summary": "Represents a {@link https://registry.terraform.io/providers/vancluever/acme/2.32.1/docs/data-sources/server_url acme_server_url}."
|
3103
3103
|
},
|
3104
3104
|
"fqn": "@cdktf/provider-acme.dataAcmeServerUrl.DataAcmeServerUrl",
|
3105
3105
|
"initializer": {
|
3106
3106
|
"docs": {
|
3107
3107
|
"stability": "stable",
|
3108
|
-
"summary": "Create a new {@link https://registry.terraform.io/providers/vancluever/acme/2.32.
|
3108
|
+
"summary": "Create a new {@link https://registry.terraform.io/providers/vancluever/acme/2.32.1/docs/data-sources/server_url acme_server_url} Data Source."
|
3109
3109
|
},
|
3110
3110
|
"locationInModule": {
|
3111
3111
|
"filename": "src/data-acme-server-url/index.ts",
|
@@ -3177,7 +3177,7 @@
|
|
3177
3177
|
},
|
3178
3178
|
{
|
3179
3179
|
"docs": {
|
3180
|
-
"remarks": "Refer to the {@link https://registry.terraform.io/providers/vancluever/acme/2.32.
|
3180
|
+
"remarks": "Refer to the {@link https://registry.terraform.io/providers/vancluever/acme/2.32.1/docs/data-sources/server_url#import import section} in the documentation of this resource for the id to use",
|
3181
3181
|
"summary": "The id of the existing DataAcmeServerUrl that should be imported."
|
3182
3182
|
},
|
3183
3183
|
"name": "importFromId",
|
@@ -3345,7 +3345,7 @@
|
|
3345
3345
|
"docs": {
|
3346
3346
|
"remarks": "Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2.\nIf 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.",
|
3347
3347
|
"stability": "stable",
|
3348
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.
|
3348
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.1/docs/data-sources/server_url#id DataAcmeServerUrl#id}."
|
3349
3349
|
},
|
3350
3350
|
"immutable": true,
|
3351
3351
|
"locationInModule": {
|
@@ -3366,13 +3366,13 @@
|
|
3366
3366
|
"base": "cdktf.TerraformProvider",
|
3367
3367
|
"docs": {
|
3368
3368
|
"stability": "stable",
|
3369
|
-
"summary": "Represents a {@link https://registry.terraform.io/providers/vancluever/acme/2.32.
|
3369
|
+
"summary": "Represents a {@link https://registry.terraform.io/providers/vancluever/acme/2.32.1/docs acme}."
|
3370
3370
|
},
|
3371
3371
|
"fqn": "@cdktf/provider-acme.provider.AcmeProvider",
|
3372
3372
|
"initializer": {
|
3373
3373
|
"docs": {
|
3374
3374
|
"stability": "stable",
|
3375
|
-
"summary": "Create a new {@link https://registry.terraform.io/providers/vancluever/acme/2.32.
|
3375
|
+
"summary": "Create a new {@link https://registry.terraform.io/providers/vancluever/acme/2.32.1/docs acme} Resource."
|
3376
3376
|
},
|
3377
3377
|
"locationInModule": {
|
3378
3378
|
"filename": "src/provider/index.ts",
|
@@ -3443,7 +3443,7 @@
|
|
3443
3443
|
},
|
3444
3444
|
{
|
3445
3445
|
"docs": {
|
3446
|
-
"remarks": "Refer to the {@link https://registry.terraform.io/providers/vancluever/acme/2.32.
|
3446
|
+
"remarks": "Refer to the {@link https://registry.terraform.io/providers/vancluever/acme/2.32.1/docs#import import section} in the documentation of this resource for the id to use",
|
3447
3447
|
"summary": "The id of the existing AcmeProvider that should be imported."
|
3448
3448
|
},
|
3449
3449
|
"name": "importFromId",
|
@@ -3624,7 +3624,7 @@
|
|
3624
3624
|
"abstract": true,
|
3625
3625
|
"docs": {
|
3626
3626
|
"stability": "stable",
|
3627
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.
|
3627
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.1/docs#server_url AcmeProvider#server_url}."
|
3628
3628
|
},
|
3629
3629
|
"immutable": true,
|
3630
3630
|
"locationInModule": {
|
@@ -3639,7 +3639,7 @@
|
|
3639
3639
|
{
|
3640
3640
|
"abstract": true,
|
3641
3641
|
"docs": {
|
3642
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.
|
3642
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.1/docs#alias AcmeProvider#alias}",
|
3643
3643
|
"stability": "stable",
|
3644
3644
|
"summary": "Alias name."
|
3645
3645
|
},
|
@@ -3662,13 +3662,13 @@
|
|
3662
3662
|
"base": "cdktf.TerraformResource",
|
3663
3663
|
"docs": {
|
3664
3664
|
"stability": "stable",
|
3665
|
-
"summary": "Represents a {@link https://registry.terraform.io/providers/vancluever/acme/2.32.
|
3665
|
+
"summary": "Represents a {@link https://registry.terraform.io/providers/vancluever/acme/2.32.1/docs/resources/registration acme_registration}."
|
3666
3666
|
},
|
3667
3667
|
"fqn": "@cdktf/provider-acme.registration.Registration",
|
3668
3668
|
"initializer": {
|
3669
3669
|
"docs": {
|
3670
3670
|
"stability": "stable",
|
3671
|
-
"summary": "Create a new {@link https://registry.terraform.io/providers/vancluever/acme/2.32.
|
3671
|
+
"summary": "Create a new {@link https://registry.terraform.io/providers/vancluever/acme/2.32.1/docs/resources/registration acme_registration} Resource."
|
3672
3672
|
},
|
3673
3673
|
"locationInModule": {
|
3674
3674
|
"filename": "src/registration/index.ts",
|
@@ -3739,7 +3739,7 @@
|
|
3739
3739
|
},
|
3740
3740
|
{
|
3741
3741
|
"docs": {
|
3742
|
-
"remarks": "Refer to the {@link https://registry.terraform.io/providers/vancluever/acme/2.32.
|
3742
|
+
"remarks": "Refer to the {@link https://registry.terraform.io/providers/vancluever/acme/2.32.1/docs/resources/registration#import import section} in the documentation of this resource for the id to use",
|
3743
3743
|
"summary": "The id of the existing Registration that should be imported."
|
3744
3744
|
},
|
3745
3745
|
"name": "importFromId",
|
@@ -4143,7 +4143,7 @@
|
|
4143
4143
|
"abstract": true,
|
4144
4144
|
"docs": {
|
4145
4145
|
"stability": "stable",
|
4146
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.
|
4146
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.1/docs/resources/registration#email_address Registration#email_address}."
|
4147
4147
|
},
|
4148
4148
|
"immutable": true,
|
4149
4149
|
"locationInModule": {
|
@@ -4159,7 +4159,7 @@
|
|
4159
4159
|
"abstract": true,
|
4160
4160
|
"docs": {
|
4161
4161
|
"stability": "stable",
|
4162
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.
|
4162
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.1/docs/resources/registration#account_key_algorithm Registration#account_key_algorithm}."
|
4163
4163
|
},
|
4164
4164
|
"immutable": true,
|
4165
4165
|
"locationInModule": {
|
@@ -4176,7 +4176,7 @@
|
|
4176
4176
|
"abstract": true,
|
4177
4177
|
"docs": {
|
4178
4178
|
"stability": "stable",
|
4179
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.
|
4179
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.1/docs/resources/registration#account_key_ecdsa_curve Registration#account_key_ecdsa_curve}."
|
4180
4180
|
},
|
4181
4181
|
"immutable": true,
|
4182
4182
|
"locationInModule": {
|
@@ -4193,7 +4193,7 @@
|
|
4193
4193
|
"abstract": true,
|
4194
4194
|
"docs": {
|
4195
4195
|
"stability": "stable",
|
4196
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.
|
4196
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.1/docs/resources/registration#account_key_pem Registration#account_key_pem}."
|
4197
4197
|
},
|
4198
4198
|
"immutable": true,
|
4199
4199
|
"locationInModule": {
|
@@ -4210,7 +4210,7 @@
|
|
4210
4210
|
"abstract": true,
|
4211
4211
|
"docs": {
|
4212
4212
|
"stability": "stable",
|
4213
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.
|
4213
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.1/docs/resources/registration#account_key_rsa_bits Registration#account_key_rsa_bits}."
|
4214
4214
|
},
|
4215
4215
|
"immutable": true,
|
4216
4216
|
"locationInModule": {
|
@@ -4226,7 +4226,7 @@
|
|
4226
4226
|
{
|
4227
4227
|
"abstract": true,
|
4228
4228
|
"docs": {
|
4229
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.
|
4229
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.1/docs/resources/registration#external_account_binding Registration#external_account_binding}",
|
4230
4230
|
"stability": "stable",
|
4231
4231
|
"summary": "external_account_binding block."
|
4232
4232
|
},
|
@@ -4246,7 +4246,7 @@
|
|
4246
4246
|
"docs": {
|
4247
4247
|
"remarks": "Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2.\nIf 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.",
|
4248
4248
|
"stability": "stable",
|
4249
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.
|
4249
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.1/docs/resources/registration#id Registration#id}."
|
4250
4250
|
},
|
4251
4251
|
"immutable": true,
|
4252
4252
|
"locationInModule": {
|
@@ -4281,7 +4281,7 @@
|
|
4281
4281
|
"abstract": true,
|
4282
4282
|
"docs": {
|
4283
4283
|
"stability": "stable",
|
4284
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.
|
4284
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.1/docs/resources/registration#hmac_base64 Registration#hmac_base64}."
|
4285
4285
|
},
|
4286
4286
|
"immutable": true,
|
4287
4287
|
"locationInModule": {
|
@@ -4297,7 +4297,7 @@
|
|
4297
4297
|
"abstract": true,
|
4298
4298
|
"docs": {
|
4299
4299
|
"stability": "stable",
|
4300
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.
|
4300
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.1/docs/resources/registration#key_id Registration#key_id}."
|
4301
4301
|
},
|
4302
4302
|
"immutable": true,
|
4303
4303
|
"locationInModule": {
|
@@ -4430,6 +4430,6 @@
|
|
4430
4430
|
"symbolId": "src/registration/index:RegistrationExternalAccountBindingOutputReference"
|
4431
4431
|
}
|
4432
4432
|
},
|
4433
|
-
"version": "
|
4434
|
-
"fingerprint": "
|
4433
|
+
"version": "12.0.1",
|
4434
|
+
"fingerprint": "mwCLjcLYRzQVlVBmjifyJtv5m+g861s0qaxQPH5LeQE="
|
4435
4435
|
}
|
package/README.md
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
|
2
|
-
# CDKTF prebuilt bindings for vancluever/acme provider version 2.32.
|
2
|
+
# CDKTF prebuilt bindings for vancluever/acme provider version 2.32.1
|
3
3
|
|
4
|
-
This repo builds and publishes the [Terraform acme provider](https://registry.terraform.io/providers/vancluever/acme/2.32.
|
4
|
+
This repo builds and publishes the [Terraform acme provider](https://registry.terraform.io/providers/vancluever/acme/2.32.1/docs) bindings for [CDK for Terraform](https://cdk.tf).
|
5
5
|
|
6
6
|
## Available Packages
|
7
7
|
|
@@ -63,7 +63,7 @@ This project is explicitly not tracking the Terraform acme provider version 1:1.
|
|
63
63
|
These are the upstream dependencies:
|
64
64
|
|
65
65
|
- [CDK for Terraform](https://cdk.tf)
|
66
|
-
- [Terraform acme provider](https://registry.terraform.io/providers/vancluever/acme/2.32.
|
66
|
+
- [Terraform acme provider](https://registry.terraform.io/providers/vancluever/acme/2.32.1)
|
67
67
|
- [Terraform Engine](https://terraform.io)
|
68
68
|
|
69
69
|
If there are breaking changes (backward incompatible) in any of the above, the major version of this project will be bumped.
|