@cdktn/provider-tls 13.0.0 → 13.1.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 +99 -92
- package/README.md +3 -3
- package/lib/cert-request/index.d.ts +18 -18
- package/lib/cert-request/index.js +8 -8
- package/lib/data-tls-certificate/index.d.ts +6 -6
- package/lib/data-tls-certificate/index.js +8 -8
- package/lib/data-tls-public-key/index.d.ts +5 -5
- package/lib/data-tls-public-key/index.js +6 -6
- package/lib/locally-signed-cert/index.d.ts +12 -12
- package/lib/locally-signed-cert/index.js +6 -6
- package/lib/private-key/index.d.ts +6 -6
- package/lib/private-key/index.js +6 -6
- package/lib/provider/index.d.ts +9 -9
- package/lib/provider/index.js +6 -6
- package/lib/self-signed-cert/index.d.ts +25 -25
- package/lib/self-signed-cert/index.js +8 -8
- package/package.json +12 -4
package/.jsii
CHANGED
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
"stability": "stable"
|
|
73
73
|
},
|
|
74
74
|
"homepage": "https://github.com/cdktn-io/cdktn-provider-tls.git",
|
|
75
|
-
"jsiiVersion": "5.9.
|
|
75
|
+
"jsiiVersion": "5.9.40 (build 8be98bb)",
|
|
76
76
|
"keywords": [
|
|
77
77
|
"cdk",
|
|
78
78
|
"cdk-terrain",
|
|
@@ -94,7 +94,7 @@
|
|
|
94
94
|
},
|
|
95
95
|
"name": "@cdktn/provider-tls",
|
|
96
96
|
"readme": {
|
|
97
|
-
"markdown": "\n# CDKTN prebuilt bindings for hashicorp/tls provider version 4.
|
|
97
|
+
"markdown": "\n# CDKTN prebuilt bindings for hashicorp/tls provider version 4.3.0\n\nThis repo builds and publishes the [Terraform tls provider](https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs) bindings for [CDK Terrain](https://cdktn.io).\n\n## Available Packages\n\n### NPM\n\nThe npm package is available at [https://www.npmjs.com/package/@cdktn/provider-tls](https://www.npmjs.com/package/@cdktn/provider-tls).\n\n`npm install @cdktn/provider-tls`\n\n### PyPI\n\nThe PyPI package is available at [https://pypi.org/project/cdktn-provider-tls](https://pypi.org/project/cdktn-provider-tls).\n\n`pipenv install cdktn-provider-tls`\n\n### Nuget\n\nThe Nuget package is available at [https://www.nuget.org/packages/Io.Cdktn.Providers.Tls](https://www.nuget.org/packages/Io.Cdktn.Providers.Tls).\n\n`dotnet add package Io.Cdktn.Providers.Tls`\n\n### Maven\n\nThe Maven package is available at [https://mvnrepository.com/artifact/io.cdktn/cdktn-provider-tls](https://mvnrepository.com/artifact/io.cdktn/cdktn-provider-tls).\n\n```\n<dependency>\n <groupId>io.cdktn</groupId>\n <artifactId>cdktn-provider-tls</artifactId>\n <version>[REPLACE WITH DESIRED VERSION]</version>\n</dependency>\n```\n\n### Go\n\nThe go package is generated into the [`github.com/cdktn-io/cdktn-provider-tls-go`](https://github.com/cdktn-io/cdktn-provider-tls-go) package.\n\n`go get github.com/cdktn-io/cdktn-provider-tls-go/tls/<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/cdktn-io/cdktn-provider-tls-go/blob/main/tls/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/@cdktn/provider-tls).\n\n## Versioning\n\nThis project is explicitly not tracking the Terraform tls provider version 1:1. In fact, it always tracks `latest` of `~> 4.0` 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://cdktn.io/docs/concepts/providers#import-providers).\n\nThese are the upstream dependencies:\n\n- [CDK Terrain](https://cdktn.io) - Last official release\n- [Terraform tls provider](https://registry.terraform.io/providers/hashicorp/tls/4.3.0)\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 Terrain](https://cdktn.io) project:\n\n- [Create bug report](https://github.com/open-constructs/cdk-terrain/issues)\n- [Create feature request](https://github.com/open-constructs/cdk-terrain/issues)\n\n## Contributing\n\n### Projen\n\nThis is mostly based on [Projen](https://projen.io), which takes care of generating the entire repository.\n\n### cdktn-provider-project based on Projen\n\nThere's a custom [project builder](https://github.com/cdktn-io/cdktn-provider-project) which encapsulate the common settings for all `cdktn` 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 [CDKTN Repository Manager](https://github.com/cdktn-io/cdktn-repository-manager/).\n"
|
|
98
98
|
},
|
|
99
99
|
"repository": {
|
|
100
100
|
"type": "git",
|
|
@@ -108,7 +108,7 @@
|
|
|
108
108
|
"line": 7
|
|
109
109
|
},
|
|
110
110
|
"readme": {
|
|
111
|
-
"markdown": "# `tls_cert_request`\n\nRefer to the Terraform Registry for docs: [`tls_cert_request`](https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
111
|
+
"markdown": "# `tls_cert_request`\n\nRefer to the Terraform Registry for docs: [`tls_cert_request`](https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs/resources/cert_request).\n"
|
|
112
112
|
},
|
|
113
113
|
"symbolId": "src/cert-request/index:"
|
|
114
114
|
},
|
|
@@ -118,7 +118,7 @@
|
|
|
118
118
|
"line": 11
|
|
119
119
|
},
|
|
120
120
|
"readme": {
|
|
121
|
-
"markdown": "# `data_tls_certificate`\n\nRefer to the Terraform Registry for docs: [`data_tls_certificate`](https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
121
|
+
"markdown": "# `data_tls_certificate`\n\nRefer to the Terraform Registry for docs: [`data_tls_certificate`](https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs/data-sources/certificate).\n"
|
|
122
122
|
},
|
|
123
123
|
"symbolId": "src/data-tls-certificate/index:"
|
|
124
124
|
},
|
|
@@ -128,7 +128,7 @@
|
|
|
128
128
|
"line": 12
|
|
129
129
|
},
|
|
130
130
|
"readme": {
|
|
131
|
-
"markdown": "# `data_tls_public_key`\n\nRefer to the Terraform Registry for docs: [`data_tls_public_key`](https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
131
|
+
"markdown": "# `data_tls_public_key`\n\nRefer to the Terraform Registry for docs: [`data_tls_public_key`](https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs/data-sources/public_key).\n"
|
|
132
132
|
},
|
|
133
133
|
"symbolId": "src/data-tls-public-key/index:"
|
|
134
134
|
},
|
|
@@ -138,7 +138,7 @@
|
|
|
138
138
|
"line": 8
|
|
139
139
|
},
|
|
140
140
|
"readme": {
|
|
141
|
-
"markdown": "# `tls_locally_signed_cert`\n\nRefer to the Terraform Registry for docs: [`tls_locally_signed_cert`](https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
141
|
+
"markdown": "# `tls_locally_signed_cert`\n\nRefer to the Terraform Registry for docs: [`tls_locally_signed_cert`](https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs/resources/locally_signed_cert).\n"
|
|
142
142
|
},
|
|
143
143
|
"symbolId": "src/locally-signed-cert/index:"
|
|
144
144
|
},
|
|
@@ -148,7 +148,7 @@
|
|
|
148
148
|
"line": 9
|
|
149
149
|
},
|
|
150
150
|
"readme": {
|
|
151
|
-
"markdown": "# `tls_private_key`\n\nRefer to the Terraform Registry for docs: [`tls_private_key`](https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
151
|
+
"markdown": "# `tls_private_key`\n\nRefer to the Terraform Registry for docs: [`tls_private_key`](https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs/resources/private_key).\n"
|
|
152
152
|
},
|
|
153
153
|
"symbolId": "src/private-key/index:"
|
|
154
154
|
},
|
|
@@ -158,7 +158,7 @@
|
|
|
158
158
|
"line": 13
|
|
159
159
|
},
|
|
160
160
|
"readme": {
|
|
161
|
-
"markdown": "# `provider`\n\nRefer to the Terraform Registry for docs: [`tls`](https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
161
|
+
"markdown": "# `provider`\n\nRefer to the Terraform Registry for docs: [`tls`](https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs).\n"
|
|
162
162
|
},
|
|
163
163
|
"symbolId": "src/provider/index:"
|
|
164
164
|
},
|
|
@@ -168,7 +168,7 @@
|
|
|
168
168
|
"line": 10
|
|
169
169
|
},
|
|
170
170
|
"readme": {
|
|
171
|
-
"markdown": "# `tls_self_signed_cert`\n\nRefer to the Terraform Registry for docs: [`tls_self_signed_cert`](https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
171
|
+
"markdown": "# `tls_self_signed_cert`\n\nRefer to the Terraform Registry for docs: [`tls_self_signed_cert`](https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs/resources/self_signed_cert).\n"
|
|
172
172
|
},
|
|
173
173
|
"symbolId": "src/self-signed-cert/index:"
|
|
174
174
|
}
|
|
@@ -182,6 +182,13 @@
|
|
|
182
182
|
"moduleName": "github.com/cdktn-io/cdktn-provider-tls-go",
|
|
183
183
|
"packageName": "tls"
|
|
184
184
|
},
|
|
185
|
+
"java": {
|
|
186
|
+
"maven": {
|
|
187
|
+
"artifactId": "cdktn-provider-tls",
|
|
188
|
+
"groupId": "io.cdktn"
|
|
189
|
+
},
|
|
190
|
+
"package": "io.cdktn.providers.tls"
|
|
191
|
+
},
|
|
185
192
|
"js": {
|
|
186
193
|
"npm": "@cdktn/provider-tls"
|
|
187
194
|
},
|
|
@@ -196,13 +203,13 @@
|
|
|
196
203
|
"base": "cdktn.TerraformResource",
|
|
197
204
|
"docs": {
|
|
198
205
|
"stability": "stable",
|
|
199
|
-
"summary": "Represents a {@link https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
206
|
+
"summary": "Represents a {@link https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs/resources/cert_request tls_cert_request}."
|
|
200
207
|
},
|
|
201
208
|
"fqn": "@cdktn/provider-tls.certRequest.CertRequest",
|
|
202
209
|
"initializer": {
|
|
203
210
|
"docs": {
|
|
204
211
|
"stability": "stable",
|
|
205
|
-
"summary": "Create a new {@link https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
212
|
+
"summary": "Create a new {@link https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs/resources/cert_request tls_cert_request} Resource."
|
|
206
213
|
},
|
|
207
214
|
"locationInModule": {
|
|
208
215
|
"filename": "src/cert-request/index.ts",
|
|
@@ -273,7 +280,7 @@
|
|
|
273
280
|
},
|
|
274
281
|
{
|
|
275
282
|
"docs": {
|
|
276
|
-
"remarks": "Refer to the {@link https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
283
|
+
"remarks": "Refer to the {@link https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs/resources/cert_request#import import section} in the documentation of this resource for the id to use",
|
|
277
284
|
"summary": "The id of the existing CertRequest that should be imported."
|
|
278
285
|
},
|
|
279
286
|
"name": "importFromId",
|
|
@@ -686,7 +693,7 @@
|
|
|
686
693
|
{
|
|
687
694
|
"abstract": true,
|
|
688
695
|
"docs": {
|
|
689
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
696
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs/resources/cert_request#private_key_pem CertRequest#private_key_pem}",
|
|
690
697
|
"stability": "stable",
|
|
691
698
|
"summary": "Private key in [PEM (RFC 1421)](https://datatracker.ietf.org/doc/html/rfc1421) format, that the certificate will belong to. This can be read from a separate file using the [`file`](https://www.terraform.io/language/functions/file) interpolation function."
|
|
692
699
|
},
|
|
@@ -703,7 +710,7 @@
|
|
|
703
710
|
{
|
|
704
711
|
"abstract": true,
|
|
705
712
|
"docs": {
|
|
706
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
713
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs/resources/cert_request#dns_names CertRequest#dns_names}",
|
|
707
714
|
"stability": "stable",
|
|
708
715
|
"summary": "List of DNS names for which a certificate is being requested (i.e. certificate subjects)."
|
|
709
716
|
},
|
|
@@ -726,7 +733,7 @@
|
|
|
726
733
|
{
|
|
727
734
|
"abstract": true,
|
|
728
735
|
"docs": {
|
|
729
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
736
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs/resources/cert_request#ip_addresses CertRequest#ip_addresses}",
|
|
730
737
|
"stability": "stable",
|
|
731
738
|
"summary": "List of IP addresses for which a certificate is being requested (i.e. certificate subjects)."
|
|
732
739
|
},
|
|
@@ -749,7 +756,7 @@
|
|
|
749
756
|
{
|
|
750
757
|
"abstract": true,
|
|
751
758
|
"docs": {
|
|
752
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
759
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs/resources/cert_request#subject CertRequest#subject}",
|
|
753
760
|
"stability": "stable",
|
|
754
761
|
"summary": "subject block."
|
|
755
762
|
},
|
|
@@ -781,7 +788,7 @@
|
|
|
781
788
|
{
|
|
782
789
|
"abstract": true,
|
|
783
790
|
"docs": {
|
|
784
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
791
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs/resources/cert_request#uris CertRequest#uris}",
|
|
785
792
|
"stability": "stable",
|
|
786
793
|
"summary": "List of URIs for which a certificate is being requested (i.e. certificate subjects)."
|
|
787
794
|
},
|
|
@@ -822,7 +829,7 @@
|
|
|
822
829
|
{
|
|
823
830
|
"abstract": true,
|
|
824
831
|
"docs": {
|
|
825
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
832
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs/resources/cert_request#common_name CertRequest#common_name}",
|
|
826
833
|
"stability": "stable",
|
|
827
834
|
"summary": "Distinguished name: `CN`."
|
|
828
835
|
},
|
|
@@ -840,7 +847,7 @@
|
|
|
840
847
|
{
|
|
841
848
|
"abstract": true,
|
|
842
849
|
"docs": {
|
|
843
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
850
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs/resources/cert_request#country CertRequest#country}",
|
|
844
851
|
"stability": "stable",
|
|
845
852
|
"summary": "Distinguished name: `C`."
|
|
846
853
|
},
|
|
@@ -858,7 +865,7 @@
|
|
|
858
865
|
{
|
|
859
866
|
"abstract": true,
|
|
860
867
|
"docs": {
|
|
861
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
868
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs/resources/cert_request#email_address CertRequest#email_address}",
|
|
862
869
|
"stability": "stable",
|
|
863
870
|
"summary": "ASN.1 Object Identifier (OID): `1.2.840.113549.1.9.1`."
|
|
864
871
|
},
|
|
@@ -876,7 +883,7 @@
|
|
|
876
883
|
{
|
|
877
884
|
"abstract": true,
|
|
878
885
|
"docs": {
|
|
879
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
886
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs/resources/cert_request#locality CertRequest#locality}",
|
|
880
887
|
"stability": "stable",
|
|
881
888
|
"summary": "Distinguished name: `L`."
|
|
882
889
|
},
|
|
@@ -894,7 +901,7 @@
|
|
|
894
901
|
{
|
|
895
902
|
"abstract": true,
|
|
896
903
|
"docs": {
|
|
897
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
904
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs/resources/cert_request#organization CertRequest#organization}",
|
|
898
905
|
"stability": "stable",
|
|
899
906
|
"summary": "Distinguished name: `O`."
|
|
900
907
|
},
|
|
@@ -912,7 +919,7 @@
|
|
|
912
919
|
{
|
|
913
920
|
"abstract": true,
|
|
914
921
|
"docs": {
|
|
915
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
922
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs/resources/cert_request#organizational_unit CertRequest#organizational_unit}",
|
|
916
923
|
"stability": "stable",
|
|
917
924
|
"summary": "Distinguished name: `OU`."
|
|
918
925
|
},
|
|
@@ -930,7 +937,7 @@
|
|
|
930
937
|
{
|
|
931
938
|
"abstract": true,
|
|
932
939
|
"docs": {
|
|
933
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
940
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs/resources/cert_request#postal_code CertRequest#postal_code}",
|
|
934
941
|
"stability": "stable",
|
|
935
942
|
"summary": "Distinguished name: `PC`."
|
|
936
943
|
},
|
|
@@ -948,7 +955,7 @@
|
|
|
948
955
|
{
|
|
949
956
|
"abstract": true,
|
|
950
957
|
"docs": {
|
|
951
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
958
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs/resources/cert_request#province CertRequest#province}",
|
|
952
959
|
"stability": "stable",
|
|
953
960
|
"summary": "Distinguished name: `ST`."
|
|
954
961
|
},
|
|
@@ -966,7 +973,7 @@
|
|
|
966
973
|
{
|
|
967
974
|
"abstract": true,
|
|
968
975
|
"docs": {
|
|
969
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
976
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs/resources/cert_request#serial_number CertRequest#serial_number}",
|
|
970
977
|
"stability": "stable",
|
|
971
978
|
"summary": "Distinguished name: `SERIALNUMBER`."
|
|
972
979
|
},
|
|
@@ -984,7 +991,7 @@
|
|
|
984
991
|
{
|
|
985
992
|
"abstract": true,
|
|
986
993
|
"docs": {
|
|
987
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
994
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs/resources/cert_request#street_address CertRequest#street_address}",
|
|
988
995
|
"stability": "stable",
|
|
989
996
|
"summary": "Distinguished name: `STREET`."
|
|
990
997
|
},
|
|
@@ -1604,13 +1611,13 @@
|
|
|
1604
1611
|
"base": "cdktn.TerraformDataSource",
|
|
1605
1612
|
"docs": {
|
|
1606
1613
|
"stability": "stable",
|
|
1607
|
-
"summary": "Represents a {@link https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
1614
|
+
"summary": "Represents a {@link https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs/data-sources/certificate tls_certificate}."
|
|
1608
1615
|
},
|
|
1609
1616
|
"fqn": "@cdktn/provider-tls.dataTlsCertificate.DataTlsCertificate",
|
|
1610
1617
|
"initializer": {
|
|
1611
1618
|
"docs": {
|
|
1612
1619
|
"stability": "stable",
|
|
1613
|
-
"summary": "Create a new {@link https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
1620
|
+
"summary": "Create a new {@link https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs/data-sources/certificate tls_certificate} Data Source."
|
|
1614
1621
|
},
|
|
1615
1622
|
"locationInModule": {
|
|
1616
1623
|
"filename": "src/data-tls-certificate/index.ts",
|
|
@@ -1682,7 +1689,7 @@
|
|
|
1682
1689
|
},
|
|
1683
1690
|
{
|
|
1684
1691
|
"docs": {
|
|
1685
|
-
"remarks": "Refer to the {@link https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
1692
|
+
"remarks": "Refer to the {@link https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs/data-sources/certificate#import import section} in the documentation of this resource for the id to use",
|
|
1686
1693
|
"summary": "The id of the existing DataTlsCertificate that should be imported."
|
|
1687
1694
|
},
|
|
1688
1695
|
"name": "importFromId",
|
|
@@ -2301,7 +2308,7 @@
|
|
|
2301
2308
|
{
|
|
2302
2309
|
"abstract": true,
|
|
2303
2310
|
"docs": {
|
|
2304
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
2311
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs/data-sources/certificate#content DataTlsCertificate#content}",
|
|
2305
2312
|
"stability": "stable",
|
|
2306
2313
|
"summary": "The content of the certificate in [PEM (RFC 1421)](https://datatracker.ietf.org/doc/html/rfc1421) format."
|
|
2307
2314
|
},
|
|
@@ -2319,7 +2326,7 @@
|
|
|
2319
2326
|
{
|
|
2320
2327
|
"abstract": true,
|
|
2321
2328
|
"docs": {
|
|
2322
|
-
"remarks": "Accepted schemes are: `https`, `tls`. For scheme `https://` it will use the HTTP protocol and apply the `proxy` configuration of the provider, if set. For scheme `tls://` it will instead use a secure TCP socket.\n\nDocs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
2329
|
+
"remarks": "Accepted schemes are: `https`, `tls`. For scheme `https://` it will use the HTTP protocol and apply the `proxy` configuration of the provider, if set. For scheme `tls://` it will instead use a secure TCP socket.\n\nDocs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs/data-sources/certificate#url DataTlsCertificate#url}",
|
|
2323
2330
|
"stability": "stable",
|
|
2324
2331
|
"summary": "URL of the endpoint to get the certificates from."
|
|
2325
2332
|
},
|
|
@@ -2337,7 +2344,7 @@
|
|
|
2337
2344
|
{
|
|
2338
2345
|
"abstract": true,
|
|
2339
2346
|
"docs": {
|
|
2340
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
2347
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs/data-sources/certificate#verify_chain DataTlsCertificate#verify_chain}",
|
|
2341
2348
|
"stability": "stable",
|
|
2342
2349
|
"summary": "Whether to verify the certificate chain while parsing it or not (default: `true`)."
|
|
2343
2350
|
},
|
|
@@ -2369,13 +2376,13 @@
|
|
|
2369
2376
|
"base": "cdktn.TerraformDataSource",
|
|
2370
2377
|
"docs": {
|
|
2371
2378
|
"stability": "stable",
|
|
2372
|
-
"summary": "Represents a {@link https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
2379
|
+
"summary": "Represents a {@link https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs/data-sources/public_key tls_public_key}."
|
|
2373
2380
|
},
|
|
2374
2381
|
"fqn": "@cdktn/provider-tls.dataTlsPublicKey.DataTlsPublicKey",
|
|
2375
2382
|
"initializer": {
|
|
2376
2383
|
"docs": {
|
|
2377
2384
|
"stability": "stable",
|
|
2378
|
-
"summary": "Create a new {@link https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
2385
|
+
"summary": "Create a new {@link https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs/data-sources/public_key tls_public_key} Data Source."
|
|
2379
2386
|
},
|
|
2380
2387
|
"locationInModule": {
|
|
2381
2388
|
"filename": "src/data-tls-public-key/index.ts",
|
|
@@ -2447,7 +2454,7 @@
|
|
|
2447
2454
|
},
|
|
2448
2455
|
{
|
|
2449
2456
|
"docs": {
|
|
2450
|
-
"remarks": "Refer to the {@link https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
2457
|
+
"remarks": "Refer to the {@link https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs/data-sources/public_key#import import section} in the documentation of this resource for the id to use",
|
|
2451
2458
|
"summary": "The id of the existing DataTlsPublicKey that should be imported."
|
|
2452
2459
|
},
|
|
2453
2460
|
"name": "importFromId",
|
|
@@ -2721,7 +2728,7 @@
|
|
|
2721
2728
|
{
|
|
2722
2729
|
"abstract": true,
|
|
2723
2730
|
"docs": {
|
|
2724
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
2731
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs/data-sources/public_key#private_key_openssh DataTlsPublicKey#private_key_openssh}",
|
|
2725
2732
|
"stability": "stable",
|
|
2726
2733
|
"summary": "The private key (in [OpenSSH PEM (RFC 4716)](https://datatracker.ietf.org/doc/html/rfc4716) format) to extract the public key from. This is _mutually exclusive_ with `private_key_pem`. Currently-supported algorithms for keys are: `RSA`, `ECDSA`, `ED25519`."
|
|
2727
2734
|
},
|
|
@@ -2739,7 +2746,7 @@
|
|
|
2739
2746
|
{
|
|
2740
2747
|
"abstract": true,
|
|
2741
2748
|
"docs": {
|
|
2742
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
2749
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs/data-sources/public_key#private_key_pem DataTlsPublicKey#private_key_pem}",
|
|
2743
2750
|
"stability": "stable",
|
|
2744
2751
|
"summary": "The private key (in [PEM (RFC 1421)](https://datatracker.ietf.org/doc/html/rfc1421) format) to extract the public key from. This is _mutually exclusive_ with `private_key_openssh`. Currently-supported algorithms for keys are: `RSA`, `ECDSA`, `ED25519`."
|
|
2745
2752
|
},
|
|
@@ -2762,13 +2769,13 @@
|
|
|
2762
2769
|
"base": "cdktn.TerraformResource",
|
|
2763
2770
|
"docs": {
|
|
2764
2771
|
"stability": "stable",
|
|
2765
|
-
"summary": "Represents a {@link https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
2772
|
+
"summary": "Represents a {@link https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs/resources/locally_signed_cert tls_locally_signed_cert}."
|
|
2766
2773
|
},
|
|
2767
2774
|
"fqn": "@cdktn/provider-tls.locallySignedCert.LocallySignedCert",
|
|
2768
2775
|
"initializer": {
|
|
2769
2776
|
"docs": {
|
|
2770
2777
|
"stability": "stable",
|
|
2771
|
-
"summary": "Create a new {@link https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
2778
|
+
"summary": "Create a new {@link https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs/resources/locally_signed_cert tls_locally_signed_cert} Resource."
|
|
2772
2779
|
},
|
|
2773
2780
|
"locationInModule": {
|
|
2774
2781
|
"filename": "src/locally-signed-cert/index.ts",
|
|
@@ -2839,7 +2846,7 @@
|
|
|
2839
2846
|
},
|
|
2840
2847
|
{
|
|
2841
2848
|
"docs": {
|
|
2842
|
-
"remarks": "Refer to the {@link https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
2849
|
+
"remarks": "Refer to the {@link https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs/resources/locally_signed_cert#import import section} in the documentation of this resource for the id to use",
|
|
2843
2850
|
"summary": "The id of the existing LocallySignedCert that should be imported."
|
|
2844
2851
|
},
|
|
2845
2852
|
"name": "importFromId",
|
|
@@ -3375,7 +3382,7 @@
|
|
|
3375
3382
|
{
|
|
3376
3383
|
"abstract": true,
|
|
3377
3384
|
"docs": {
|
|
3378
|
-
"remarks": "Values are defined in [RFC 5280](https://datatracker.ietf.org/doc/html/rfc5280) and combine flags defined by both [Key Usages](https://datatracker.ietf.org/doc/html/rfc5280#section-4.2.1.3) and [Extended Key Usages](https://datatracker.ietf.org/doc/html/rfc5280#section-4.2.1.12). Accepted values: `any_extended`, `cert_signing`, `client_auth`, `code_signing`, `content_commitment`, `crl_signing`, `data_encipherment`, `decipher_only`, `digital_signature`, `email_protection`, `encipher_only`, `ipsec_end_system`, `ipsec_tunnel`, `ipsec_user`, `key_agreement`, `key_encipherment`, `microsoft_commercial_code_signing`, `microsoft_kernel_code_signing`, `microsoft_server_gated_crypto`, `netscape_server_gated_crypto`, `ocsp_signing`, `server_auth`, `timestamping`.\n\nDocs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
3385
|
+
"remarks": "Values are defined in [RFC 5280](https://datatracker.ietf.org/doc/html/rfc5280) and combine flags defined by both [Key Usages](https://datatracker.ietf.org/doc/html/rfc5280#section-4.2.1.3) and [Extended Key Usages](https://datatracker.ietf.org/doc/html/rfc5280#section-4.2.1.12). Accepted values: `any_extended`, `cert_signing`, `client_auth`, `code_signing`, `content_commitment`, `crl_signing`, `data_encipherment`, `decipher_only`, `digital_signature`, `email_protection`, `encipher_only`, `ipsec_end_system`, `ipsec_tunnel`, `ipsec_user`, `key_agreement`, `key_encipherment`, `microsoft_commercial_code_signing`, `microsoft_kernel_code_signing`, `microsoft_server_gated_crypto`, `netscape_server_gated_crypto`, `ocsp_signing`, `server_auth`, `timestamping`.\n\nDocs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs/resources/locally_signed_cert#allowed_uses LocallySignedCert#allowed_uses}",
|
|
3379
3386
|
"stability": "stable",
|
|
3380
3387
|
"summary": "List of key usages allowed for the issued certificate."
|
|
3381
3388
|
},
|
|
@@ -3397,7 +3404,7 @@
|
|
|
3397
3404
|
{
|
|
3398
3405
|
"abstract": true,
|
|
3399
3406
|
"docs": {
|
|
3400
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
3407
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs/resources/locally_signed_cert#ca_cert_pem LocallySignedCert#ca_cert_pem}",
|
|
3401
3408
|
"stability": "stable",
|
|
3402
3409
|
"summary": "Certificate data of the Certificate Authority (CA) in [PEM (RFC 1421)](https://datatracker.ietf.org/doc/html/rfc1421) format."
|
|
3403
3410
|
},
|
|
@@ -3414,7 +3421,7 @@
|
|
|
3414
3421
|
{
|
|
3415
3422
|
"abstract": true,
|
|
3416
3423
|
"docs": {
|
|
3417
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
3424
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs/resources/locally_signed_cert#ca_private_key_pem LocallySignedCert#ca_private_key_pem}",
|
|
3418
3425
|
"stability": "stable",
|
|
3419
3426
|
"summary": "Private key of the Certificate Authority (CA) used to sign the certificate, in [PEM (RFC 1421)](https://datatracker.ietf.org/doc/html/rfc1421) format."
|
|
3420
3427
|
},
|
|
@@ -3431,7 +3438,7 @@
|
|
|
3431
3438
|
{
|
|
3432
3439
|
"abstract": true,
|
|
3433
3440
|
"docs": {
|
|
3434
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
3441
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs/resources/locally_signed_cert#cert_request_pem LocallySignedCert#cert_request_pem}",
|
|
3435
3442
|
"stability": "stable",
|
|
3436
3443
|
"summary": "Certificate request data in [PEM (RFC 1421)](https://datatracker.ietf.org/doc/html/rfc1421) format."
|
|
3437
3444
|
},
|
|
@@ -3448,7 +3455,7 @@
|
|
|
3448
3455
|
{
|
|
3449
3456
|
"abstract": true,
|
|
3450
3457
|
"docs": {
|
|
3451
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
3458
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs/resources/locally_signed_cert#validity_period_hours LocallySignedCert#validity_period_hours}",
|
|
3452
3459
|
"stability": "stable",
|
|
3453
3460
|
"summary": "Number of hours, after initial issuing, that the certificate will remain valid for."
|
|
3454
3461
|
},
|
|
@@ -3465,7 +3472,7 @@
|
|
|
3465
3472
|
{
|
|
3466
3473
|
"abstract": true,
|
|
3467
3474
|
"docs": {
|
|
3468
|
-
"remarks": "This can be useful to deploy an updated certificate in advance of the expiration of the current certificate. However, the old certificate remains valid until its true expiration time, since this resource does not (and cannot) support certificate revocation. Also, this advance update can only be performed should the Terraform configuration be applied during the early renewal period. (default: `0`)\n\nDocs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
3475
|
+
"remarks": "This can be useful to deploy an updated certificate in advance of the expiration of the current certificate. However, the old certificate remains valid until its true expiration time, since this resource does not (and cannot) support certificate revocation. Also, this advance update can only be performed should the Terraform configuration be applied during the early renewal period. (default: `0`)\n\nDocs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs/resources/locally_signed_cert#early_renewal_hours LocallySignedCert#early_renewal_hours}",
|
|
3469
3476
|
"stability": "stable",
|
|
3470
3477
|
"summary": "The resource will consider the certificate to have expired the given number of hours before its actual expiry time."
|
|
3471
3478
|
},
|
|
@@ -3483,7 +3490,7 @@
|
|
|
3483
3490
|
{
|
|
3484
3491
|
"abstract": true,
|
|
3485
3492
|
"docs": {
|
|
3486
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
3493
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs/resources/locally_signed_cert#is_ca_certificate LocallySignedCert#is_ca_certificate}",
|
|
3487
3494
|
"stability": "stable",
|
|
3488
3495
|
"summary": "Is the generated certificate representing a Certificate Authority (CA) (default: `false`)."
|
|
3489
3496
|
},
|
|
@@ -3510,7 +3517,7 @@
|
|
|
3510
3517
|
{
|
|
3511
3518
|
"abstract": true,
|
|
3512
3519
|
"docs": {
|
|
3513
|
-
"remarks": "If `is_ca_certificate` is `false`, this value is ignored.\n\nDocs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
3520
|
+
"remarks": "If `is_ca_certificate` is `false`, this value is ignored.\n\nDocs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs/resources/locally_signed_cert#max_path_length LocallySignedCert#max_path_length}",
|
|
3514
3521
|
"stability": "stable",
|
|
3515
3522
|
"summary": "Maximum number of intermediate certificates that may follow this certificate in a valid certification path."
|
|
3516
3523
|
},
|
|
@@ -3528,7 +3535,7 @@
|
|
|
3528
3535
|
{
|
|
3529
3536
|
"abstract": true,
|
|
3530
3537
|
"docs": {
|
|
3531
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
3538
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs/resources/locally_signed_cert#set_subject_key_id LocallySignedCert#set_subject_key_id}",
|
|
3532
3539
|
"stability": "stable",
|
|
3533
3540
|
"summary": "Should the generated certificate include a [subject key identifier](https://datatracker.ietf.org/doc/html/rfc5280#section-4.2.1.2) (default: `false`)."
|
|
3534
3541
|
},
|
|
@@ -3560,13 +3567,13 @@
|
|
|
3560
3567
|
"base": "cdktn.TerraformResource",
|
|
3561
3568
|
"docs": {
|
|
3562
3569
|
"stability": "stable",
|
|
3563
|
-
"summary": "Represents a {@link https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
3570
|
+
"summary": "Represents a {@link https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs/resources/private_key tls_private_key}."
|
|
3564
3571
|
},
|
|
3565
3572
|
"fqn": "@cdktn/provider-tls.privateKey.PrivateKey",
|
|
3566
3573
|
"initializer": {
|
|
3567
3574
|
"docs": {
|
|
3568
3575
|
"stability": "stable",
|
|
3569
|
-
"summary": "Create a new {@link https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
3576
|
+
"summary": "Create a new {@link https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs/resources/private_key tls_private_key} Resource."
|
|
3570
3577
|
},
|
|
3571
3578
|
"locationInModule": {
|
|
3572
3579
|
"filename": "src/private-key/index.ts",
|
|
@@ -3637,7 +3644,7 @@
|
|
|
3637
3644
|
},
|
|
3638
3645
|
{
|
|
3639
3646
|
"docs": {
|
|
3640
|
-
"remarks": "Refer to the {@link https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
3647
|
+
"remarks": "Refer to the {@link https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs/resources/private_key#import import section} in the documentation of this resource for the id to use",
|
|
3641
3648
|
"summary": "The id of the existing PrivateKey that should be imported."
|
|
3642
3649
|
},
|
|
3643
3650
|
"name": "importFromId",
|
|
@@ -3967,7 +3974,7 @@
|
|
|
3967
3974
|
{
|
|
3968
3975
|
"abstract": true,
|
|
3969
3976
|
"docs": {
|
|
3970
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
3977
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs/resources/private_key#algorithm PrivateKey#algorithm}",
|
|
3971
3978
|
"stability": "stable",
|
|
3972
3979
|
"summary": "Name of the algorithm to use when generating the private key. Currently-supported values are: `RSA`, `ECDSA`, `ED25519`."
|
|
3973
3980
|
},
|
|
@@ -3984,7 +3991,7 @@
|
|
|
3984
3991
|
{
|
|
3985
3992
|
"abstract": true,
|
|
3986
3993
|
"docs": {
|
|
3987
|
-
"remarks": "Currently-supported values are: `P224`, `P256`, `P384`, `P521`. (default: `P224`).\n\nDocs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
3994
|
+
"remarks": "Currently-supported values are: `P224`, `P256`, `P384`, `P521`. (default: `P224`).\n\nDocs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs/resources/private_key#ecdsa_curve PrivateKey#ecdsa_curve}",
|
|
3988
3995
|
"stability": "stable",
|
|
3989
3996
|
"summary": "When `algorithm` is `ECDSA`, the name of the elliptic curve to use."
|
|
3990
3997
|
},
|
|
@@ -4002,7 +4009,7 @@
|
|
|
4002
4009
|
{
|
|
4003
4010
|
"abstract": true,
|
|
4004
4011
|
"docs": {
|
|
4005
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
4012
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs/resources/private_key#rsa_bits PrivateKey#rsa_bits}",
|
|
4006
4013
|
"stability": "stable",
|
|
4007
4014
|
"summary": "When `algorithm` is `RSA`, the size of the generated RSA key, in bits (default: `2048`)."
|
|
4008
4015
|
},
|
|
@@ -4025,13 +4032,13 @@
|
|
|
4025
4032
|
"base": "cdktn.TerraformProvider",
|
|
4026
4033
|
"docs": {
|
|
4027
4034
|
"stability": "stable",
|
|
4028
|
-
"summary": "Represents a {@link https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
4035
|
+
"summary": "Represents a {@link https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs tls}."
|
|
4029
4036
|
},
|
|
4030
4037
|
"fqn": "@cdktn/provider-tls.provider.TlsProvider",
|
|
4031
4038
|
"initializer": {
|
|
4032
4039
|
"docs": {
|
|
4033
4040
|
"stability": "stable",
|
|
4034
|
-
"summary": "Create a new {@link https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
4041
|
+
"summary": "Create a new {@link https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs tls} Resource."
|
|
4035
4042
|
},
|
|
4036
4043
|
"locationInModule": {
|
|
4037
4044
|
"filename": "src/provider/index.ts",
|
|
@@ -4103,7 +4110,7 @@
|
|
|
4103
4110
|
},
|
|
4104
4111
|
{
|
|
4105
4112
|
"docs": {
|
|
4106
|
-
"remarks": "Refer to the {@link https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
4113
|
+
"remarks": "Refer to the {@link https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs#import import section} in the documentation of this resource for the id to use",
|
|
4107
4114
|
"summary": "The id of the existing TlsProvider that should be imported."
|
|
4108
4115
|
},
|
|
4109
4116
|
"name": "importFromId",
|
|
@@ -4321,7 +4328,7 @@
|
|
|
4321
4328
|
{
|
|
4322
4329
|
"abstract": true,
|
|
4323
4330
|
"docs": {
|
|
4324
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
4331
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs#alias TlsProvider#alias}",
|
|
4325
4332
|
"stability": "stable",
|
|
4326
4333
|
"summary": "Alias name."
|
|
4327
4334
|
},
|
|
@@ -4339,7 +4346,7 @@
|
|
|
4339
4346
|
{
|
|
4340
4347
|
"abstract": true,
|
|
4341
4348
|
"docs": {
|
|
4342
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
4349
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs#proxy TlsProvider#proxy}",
|
|
4343
4350
|
"stability": "stable",
|
|
4344
4351
|
"summary": "proxy block."
|
|
4345
4352
|
},
|
|
@@ -4389,7 +4396,7 @@
|
|
|
4389
4396
|
{
|
|
4390
4397
|
"abstract": true,
|
|
4391
4398
|
"docs": {
|
|
4392
|
-
"remarks": "This is based upon [`http.ProxyFromEnvironment`](https://pkg.go.dev/net/http#ProxyFromEnvironment) and it supports the same environment variables (default: `true`).\n\nDocs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
4399
|
+
"remarks": "This is based upon [`http.ProxyFromEnvironment`](https://pkg.go.dev/net/http#ProxyFromEnvironment) and it supports the same environment variables (default: `true`).\n\nDocs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs#from_env TlsProvider#from_env}",
|
|
4393
4400
|
"stability": "stable",
|
|
4394
4401
|
"summary": "When `true` the provider will discover the proxy configuration from environment variables."
|
|
4395
4402
|
},
|
|
@@ -4416,7 +4423,7 @@
|
|
|
4416
4423
|
{
|
|
4417
4424
|
"abstract": true,
|
|
4418
4425
|
"docs": {
|
|
4419
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
4426
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs#password TlsProvider#password}",
|
|
4420
4427
|
"stability": "stable",
|
|
4421
4428
|
"summary": "Password used for Basic authentication against the Proxy."
|
|
4422
4429
|
},
|
|
@@ -4434,7 +4441,7 @@
|
|
|
4434
4441
|
{
|
|
4435
4442
|
"abstract": true,
|
|
4436
4443
|
"docs": {
|
|
4437
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
4444
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs#url TlsProvider#url}",
|
|
4438
4445
|
"stability": "stable",
|
|
4439
4446
|
"summary": "URL used to connect to the Proxy. Accepted schemes are: `http`, `https`, `socks5`."
|
|
4440
4447
|
},
|
|
@@ -4452,7 +4459,7 @@
|
|
|
4452
4459
|
{
|
|
4453
4460
|
"abstract": true,
|
|
4454
4461
|
"docs": {
|
|
4455
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
4462
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs#username TlsProvider#username}",
|
|
4456
4463
|
"stability": "stable",
|
|
4457
4464
|
"summary": "Username (or Token) used for Basic authentication against the Proxy."
|
|
4458
4465
|
},
|
|
@@ -4475,13 +4482,13 @@
|
|
|
4475
4482
|
"base": "cdktn.TerraformResource",
|
|
4476
4483
|
"docs": {
|
|
4477
4484
|
"stability": "stable",
|
|
4478
|
-
"summary": "Represents a {@link https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
4485
|
+
"summary": "Represents a {@link https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs/resources/self_signed_cert tls_self_signed_cert}."
|
|
4479
4486
|
},
|
|
4480
4487
|
"fqn": "@cdktn/provider-tls.selfSignedCert.SelfSignedCert",
|
|
4481
4488
|
"initializer": {
|
|
4482
4489
|
"docs": {
|
|
4483
4490
|
"stability": "stable",
|
|
4484
|
-
"summary": "Create a new {@link https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
4491
|
+
"summary": "Create a new {@link https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs/resources/self_signed_cert tls_self_signed_cert} Resource."
|
|
4485
4492
|
},
|
|
4486
4493
|
"locationInModule": {
|
|
4487
4494
|
"filename": "src/self-signed-cert/index.ts",
|
|
@@ -4552,7 +4559,7 @@
|
|
|
4552
4559
|
},
|
|
4553
4560
|
{
|
|
4554
4561
|
"docs": {
|
|
4555
|
-
"remarks": "Refer to the {@link https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
4562
|
+
"remarks": "Refer to the {@link https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs/resources/self_signed_cert#import import section} in the documentation of this resource for the id to use",
|
|
4556
4563
|
"summary": "The id of the existing SelfSignedCert that should be imported."
|
|
4557
4564
|
},
|
|
4558
4565
|
"name": "importFromId",
|
|
@@ -5317,7 +5324,7 @@
|
|
|
5317
5324
|
{
|
|
5318
5325
|
"abstract": true,
|
|
5319
5326
|
"docs": {
|
|
5320
|
-
"remarks": "Values are defined in [RFC 5280](https://datatracker.ietf.org/doc/html/rfc5280) and combine flags defined by both [Key Usages](https://datatracker.ietf.org/doc/html/rfc5280#section-4.2.1.3) and [Extended Key Usages](https://datatracker.ietf.org/doc/html/rfc5280#section-4.2.1.12). Accepted values: `any_extended`, `cert_signing`, `client_auth`, `code_signing`, `content_commitment`, `crl_signing`, `data_encipherment`, `decipher_only`, `digital_signature`, `email_protection`, `encipher_only`, `ipsec_end_system`, `ipsec_tunnel`, `ipsec_user`, `key_agreement`, `key_encipherment`, `microsoft_commercial_code_signing`, `microsoft_kernel_code_signing`, `microsoft_server_gated_crypto`, `netscape_server_gated_crypto`, `ocsp_signing`, `server_auth`, `timestamping`.\n\nDocs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
5327
|
+
"remarks": "Values are defined in [RFC 5280](https://datatracker.ietf.org/doc/html/rfc5280) and combine flags defined by both [Key Usages](https://datatracker.ietf.org/doc/html/rfc5280#section-4.2.1.3) and [Extended Key Usages](https://datatracker.ietf.org/doc/html/rfc5280#section-4.2.1.12). Accepted values: `any_extended`, `cert_signing`, `client_auth`, `code_signing`, `content_commitment`, `crl_signing`, `data_encipherment`, `decipher_only`, `digital_signature`, `email_protection`, `encipher_only`, `ipsec_end_system`, `ipsec_tunnel`, `ipsec_user`, `key_agreement`, `key_encipherment`, `microsoft_commercial_code_signing`, `microsoft_kernel_code_signing`, `microsoft_server_gated_crypto`, `netscape_server_gated_crypto`, `ocsp_signing`, `server_auth`, `timestamping`.\n\nDocs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs/resources/self_signed_cert#allowed_uses SelfSignedCert#allowed_uses}",
|
|
5321
5328
|
"stability": "stable",
|
|
5322
5329
|
"summary": "List of key usages allowed for the issued certificate."
|
|
5323
5330
|
},
|
|
@@ -5339,7 +5346,7 @@
|
|
|
5339
5346
|
{
|
|
5340
5347
|
"abstract": true,
|
|
5341
5348
|
"docs": {
|
|
5342
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
5349
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs/resources/self_signed_cert#private_key_pem SelfSignedCert#private_key_pem}",
|
|
5343
5350
|
"stability": "stable",
|
|
5344
5351
|
"summary": "Private key in [PEM (RFC 1421)](https://datatracker.ietf.org/doc/html/rfc1421) format, that the certificate will belong to. This can be read from a separate file using the [`file`](https://www.terraform.io/language/functions/file) interpolation function."
|
|
5345
5352
|
},
|
|
@@ -5356,7 +5363,7 @@
|
|
|
5356
5363
|
{
|
|
5357
5364
|
"abstract": true,
|
|
5358
5365
|
"docs": {
|
|
5359
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
5366
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs/resources/self_signed_cert#validity_period_hours SelfSignedCert#validity_period_hours}",
|
|
5360
5367
|
"stability": "stable",
|
|
5361
5368
|
"summary": "Number of hours, after initial issuing, that the certificate will remain valid for."
|
|
5362
5369
|
},
|
|
@@ -5373,7 +5380,7 @@
|
|
|
5373
5380
|
{
|
|
5374
5381
|
"abstract": true,
|
|
5375
5382
|
"docs": {
|
|
5376
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
5383
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs/resources/self_signed_cert#dns_names SelfSignedCert#dns_names}",
|
|
5377
5384
|
"stability": "stable",
|
|
5378
5385
|
"summary": "List of DNS names for which a certificate is being requested (i.e. certificate subjects)."
|
|
5379
5386
|
},
|
|
@@ -5396,7 +5403,7 @@
|
|
|
5396
5403
|
{
|
|
5397
5404
|
"abstract": true,
|
|
5398
5405
|
"docs": {
|
|
5399
|
-
"remarks": "This can be useful to deploy an updated certificate in advance of the expiration of the current certificate. However, the old certificate remains valid until its true expiration time, since this resource does not (and cannot) support certificate revocation. Also, this advance update can only be performed should the Terraform configuration be applied during the early renewal period. (default: `0`)\n\nDocs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
5406
|
+
"remarks": "This can be useful to deploy an updated certificate in advance of the expiration of the current certificate. However, the old certificate remains valid until its true expiration time, since this resource does not (and cannot) support certificate revocation. Also, this advance update can only be performed should the Terraform configuration be applied during the early renewal period. (default: `0`)\n\nDocs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs/resources/self_signed_cert#early_renewal_hours SelfSignedCert#early_renewal_hours}",
|
|
5400
5407
|
"stability": "stable",
|
|
5401
5408
|
"summary": "The resource will consider the certificate to have expired the given number of hours before its actual expiry time."
|
|
5402
5409
|
},
|
|
@@ -5414,7 +5421,7 @@
|
|
|
5414
5421
|
{
|
|
5415
5422
|
"abstract": true,
|
|
5416
5423
|
"docs": {
|
|
5417
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
5424
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs/resources/self_signed_cert#ip_addresses SelfSignedCert#ip_addresses}",
|
|
5418
5425
|
"stability": "stable",
|
|
5419
5426
|
"summary": "List of IP addresses for which a certificate is being requested (i.e. certificate subjects)."
|
|
5420
5427
|
},
|
|
@@ -5437,7 +5444,7 @@
|
|
|
5437
5444
|
{
|
|
5438
5445
|
"abstract": true,
|
|
5439
5446
|
"docs": {
|
|
5440
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
5447
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs/resources/self_signed_cert#is_ca_certificate SelfSignedCert#is_ca_certificate}",
|
|
5441
5448
|
"stability": "stable",
|
|
5442
5449
|
"summary": "Is the generated certificate representing a Certificate Authority (CA) (default: `false`)."
|
|
5443
5450
|
},
|
|
@@ -5464,7 +5471,7 @@
|
|
|
5464
5471
|
{
|
|
5465
5472
|
"abstract": true,
|
|
5466
5473
|
"docs": {
|
|
5467
|
-
"remarks": "If `is_ca_certificate` is `false`, this value is ignored.\n\nDocs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
5474
|
+
"remarks": "If `is_ca_certificate` is `false`, this value is ignored.\n\nDocs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs/resources/self_signed_cert#max_path_length SelfSignedCert#max_path_length}",
|
|
5468
5475
|
"stability": "stable",
|
|
5469
5476
|
"summary": "Maximum number of intermediate certificates that may follow this certificate in a valid certification path."
|
|
5470
5477
|
},
|
|
@@ -5482,7 +5489,7 @@
|
|
|
5482
5489
|
{
|
|
5483
5490
|
"abstract": true,
|
|
5484
5491
|
"docs": {
|
|
5485
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
5492
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs/resources/self_signed_cert#set_authority_key_id SelfSignedCert#set_authority_key_id}",
|
|
5486
5493
|
"stability": "stable",
|
|
5487
5494
|
"summary": "Should the generated certificate include an [authority key identifier](https://datatracker.ietf.org/doc/html/rfc5280#section-4.2.1.1): for self-signed certificates this is the same value as the [subject key identifier](https://datatracker.ietf.org/doc/html/rfc5280#section-4.2.1.2) (default: `false`)."
|
|
5488
5495
|
},
|
|
@@ -5509,7 +5516,7 @@
|
|
|
5509
5516
|
{
|
|
5510
5517
|
"abstract": true,
|
|
5511
5518
|
"docs": {
|
|
5512
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
5519
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs/resources/self_signed_cert#set_subject_key_id SelfSignedCert#set_subject_key_id}",
|
|
5513
5520
|
"stability": "stable",
|
|
5514
5521
|
"summary": "Should the generated certificate include a [subject key identifier](https://datatracker.ietf.org/doc/html/rfc5280#section-4.2.1.2) (default: `false`)."
|
|
5515
5522
|
},
|
|
@@ -5536,7 +5543,7 @@
|
|
|
5536
5543
|
{
|
|
5537
5544
|
"abstract": true,
|
|
5538
5545
|
"docs": {
|
|
5539
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
5546
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs/resources/self_signed_cert#subject SelfSignedCert#subject}",
|
|
5540
5547
|
"stability": "stable",
|
|
5541
5548
|
"summary": "subject block."
|
|
5542
5549
|
},
|
|
@@ -5568,7 +5575,7 @@
|
|
|
5568
5575
|
{
|
|
5569
5576
|
"abstract": true,
|
|
5570
5577
|
"docs": {
|
|
5571
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
5578
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs/resources/self_signed_cert#uris SelfSignedCert#uris}",
|
|
5572
5579
|
"stability": "stable",
|
|
5573
5580
|
"summary": "List of URIs for which a certificate is being requested (i.e. certificate subjects)."
|
|
5574
5581
|
},
|
|
@@ -5609,7 +5616,7 @@
|
|
|
5609
5616
|
{
|
|
5610
5617
|
"abstract": true,
|
|
5611
5618
|
"docs": {
|
|
5612
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
5619
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs/resources/self_signed_cert#common_name SelfSignedCert#common_name}",
|
|
5613
5620
|
"stability": "stable",
|
|
5614
5621
|
"summary": "Distinguished name: `CN`."
|
|
5615
5622
|
},
|
|
@@ -5627,7 +5634,7 @@
|
|
|
5627
5634
|
{
|
|
5628
5635
|
"abstract": true,
|
|
5629
5636
|
"docs": {
|
|
5630
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
5637
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs/resources/self_signed_cert#country SelfSignedCert#country}",
|
|
5631
5638
|
"stability": "stable",
|
|
5632
5639
|
"summary": "Distinguished name: `C`."
|
|
5633
5640
|
},
|
|
@@ -5645,7 +5652,7 @@
|
|
|
5645
5652
|
{
|
|
5646
5653
|
"abstract": true,
|
|
5647
5654
|
"docs": {
|
|
5648
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
5655
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs/resources/self_signed_cert#email_address SelfSignedCert#email_address}",
|
|
5649
5656
|
"stability": "stable",
|
|
5650
5657
|
"summary": "ASN.1 Object Identifier (OID): `1.2.840.113549.1.9.1`."
|
|
5651
5658
|
},
|
|
@@ -5663,7 +5670,7 @@
|
|
|
5663
5670
|
{
|
|
5664
5671
|
"abstract": true,
|
|
5665
5672
|
"docs": {
|
|
5666
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
5673
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs/resources/self_signed_cert#locality SelfSignedCert#locality}",
|
|
5667
5674
|
"stability": "stable",
|
|
5668
5675
|
"summary": "Distinguished name: `L`."
|
|
5669
5676
|
},
|
|
@@ -5681,7 +5688,7 @@
|
|
|
5681
5688
|
{
|
|
5682
5689
|
"abstract": true,
|
|
5683
5690
|
"docs": {
|
|
5684
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
5691
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs/resources/self_signed_cert#organization SelfSignedCert#organization}",
|
|
5685
5692
|
"stability": "stable",
|
|
5686
5693
|
"summary": "Distinguished name: `O`."
|
|
5687
5694
|
},
|
|
@@ -5699,7 +5706,7 @@
|
|
|
5699
5706
|
{
|
|
5700
5707
|
"abstract": true,
|
|
5701
5708
|
"docs": {
|
|
5702
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
5709
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs/resources/self_signed_cert#organizational_unit SelfSignedCert#organizational_unit}",
|
|
5703
5710
|
"stability": "stable",
|
|
5704
5711
|
"summary": "Distinguished name: `OU`."
|
|
5705
5712
|
},
|
|
@@ -5717,7 +5724,7 @@
|
|
|
5717
5724
|
{
|
|
5718
5725
|
"abstract": true,
|
|
5719
5726
|
"docs": {
|
|
5720
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
5727
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs/resources/self_signed_cert#postal_code SelfSignedCert#postal_code}",
|
|
5721
5728
|
"stability": "stable",
|
|
5722
5729
|
"summary": "Distinguished name: `PC`."
|
|
5723
5730
|
},
|
|
@@ -5735,7 +5742,7 @@
|
|
|
5735
5742
|
{
|
|
5736
5743
|
"abstract": true,
|
|
5737
5744
|
"docs": {
|
|
5738
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
5745
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs/resources/self_signed_cert#province SelfSignedCert#province}",
|
|
5739
5746
|
"stability": "stable",
|
|
5740
5747
|
"summary": "Distinguished name: `ST`."
|
|
5741
5748
|
},
|
|
@@ -5753,7 +5760,7 @@
|
|
|
5753
5760
|
{
|
|
5754
5761
|
"abstract": true,
|
|
5755
5762
|
"docs": {
|
|
5756
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
5763
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs/resources/self_signed_cert#serial_number SelfSignedCert#serial_number}",
|
|
5757
5764
|
"stability": "stable",
|
|
5758
5765
|
"summary": "Distinguished name: `SERIALNUMBER`."
|
|
5759
5766
|
},
|
|
@@ -5771,7 +5778,7 @@
|
|
|
5771
5778
|
{
|
|
5772
5779
|
"abstract": true,
|
|
5773
5780
|
"docs": {
|
|
5774
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.
|
|
5781
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tls/4.3.0/docs/resources/self_signed_cert#street_address SelfSignedCert#street_address}",
|
|
5775
5782
|
"stability": "stable",
|
|
5776
5783
|
"summary": "Distinguished name: `STREET`."
|
|
5777
5784
|
},
|
|
@@ -6387,6 +6394,6 @@
|
|
|
6387
6394
|
"symbolId": "src/self-signed-cert/index:SelfSignedCertSubjectOutputReference"
|
|
6388
6395
|
}
|
|
6389
6396
|
},
|
|
6390
|
-
"version": "13.
|
|
6391
|
-
"fingerprint": "
|
|
6397
|
+
"version": "13.1.0",
|
|
6398
|
+
"fingerprint": "4bBewdE6afIYM+9VMhCUm/LWqCrRwEwo/fimT7b3QZE="
|
|
6392
6399
|
}
|