@cdktf/provider-acme 11.11.3 → 11.13.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 +270 -215
- package/README.md +3 -3
- package/lib/certificate/index.d.ts +42 -33
- package/lib/certificate/index.js +34 -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 +8 -8
package/.jsii
CHANGED
@@ -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.6.16 (build 80bb474)",
|
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.
|
94
|
+
"markdown": "\n# CDKTF prebuilt bindings for vancluever/acme provider version 2.32.0\n\nThis repo builds and publishes the [Terraform acme provider](https://registry.terraform.io/providers/vancluever/acme/2.32.0/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.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 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.
|
108
|
+
"markdown": "# `acme_certificate`\n\nRefer to the Terraform Registry for docs: [`acme_certificate`](https://registry.terraform.io/providers/vancluever/acme/2.32.0/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.
|
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.0/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.
|
128
|
+
"markdown": "# `provider`\n\nRefer to the Terraform Registry for docs: [`acme`](https://registry.terraform.io/providers/vancluever/acme/2.32.0/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.
|
138
|
+
"markdown": "# `acme_registration`\n\nRefer to the Terraform Registry for docs: [`acme_registration`](https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs/resources/registration).\n"
|
139
139
|
},
|
140
140
|
"symbolId": "src/registration/index:"
|
141
141
|
}
|
@@ -170,17 +170,17 @@
|
|
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.
|
173
|
+
"summary": "Represents a {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/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.
|
179
|
+
"summary": "Create a new {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs/resources/certificate acme_certificate} Resource."
|
180
180
|
},
|
181
181
|
"locationInModule": {
|
182
182
|
"filename": "src/certificate/index.ts",
|
183
|
-
"line":
|
183
|
+
"line": 749
|
184
184
|
},
|
185
185
|
"parameters": [
|
186
186
|
{
|
@@ -213,7 +213,7 @@
|
|
213
213
|
"kind": "class",
|
214
214
|
"locationInModule": {
|
215
215
|
"filename": "src/certificate/index.ts",
|
216
|
-
"line":
|
216
|
+
"line": 717
|
217
217
|
},
|
218
218
|
"methods": [
|
219
219
|
{
|
@@ -223,7 +223,7 @@
|
|
223
223
|
},
|
224
224
|
"locationInModule": {
|
225
225
|
"filename": "src/certificate/index.ts",
|
226
|
-
"line":
|
226
|
+
"line": 734
|
227
227
|
},
|
228
228
|
"name": "generateConfigForImport",
|
229
229
|
"parameters": [
|
@@ -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.
|
250
|
+
"remarks": "Refer to the {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/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",
|
@@ -279,7 +279,7 @@
|
|
279
279
|
},
|
280
280
|
"locationInModule": {
|
281
281
|
"filename": "src/certificate/index.ts",
|
282
|
-
"line":
|
282
|
+
"line": 1108
|
283
283
|
},
|
284
284
|
"name": "putDnsChallenge",
|
285
285
|
"parameters": [
|
@@ -311,7 +311,7 @@
|
|
311
311
|
},
|
312
312
|
"locationInModule": {
|
313
313
|
"filename": "src/certificate/index.ts",
|
314
|
-
"line":
|
314
|
+
"line": 1124
|
315
315
|
},
|
316
316
|
"name": "putHttpChallenge",
|
317
317
|
"parameters": [
|
@@ -329,7 +329,7 @@
|
|
329
329
|
},
|
330
330
|
"locationInModule": {
|
331
331
|
"filename": "src/certificate/index.ts",
|
332
|
-
"line":
|
332
|
+
"line": 1140
|
333
333
|
},
|
334
334
|
"name": "putHttpMemcachedChallenge",
|
335
335
|
"parameters": [
|
@@ -347,7 +347,7 @@
|
|
347
347
|
},
|
348
348
|
"locationInModule": {
|
349
349
|
"filename": "src/certificate/index.ts",
|
350
|
-
"line":
|
350
|
+
"line": 1156
|
351
351
|
},
|
352
352
|
"name": "putHttpS3Challenge",
|
353
353
|
"parameters": [
|
@@ -365,7 +365,7 @@
|
|
365
365
|
},
|
366
366
|
"locationInModule": {
|
367
367
|
"filename": "src/certificate/index.ts",
|
368
|
-
"line":
|
368
|
+
"line": 1172
|
369
369
|
},
|
370
370
|
"name": "putHttpWebrootChallenge",
|
371
371
|
"parameters": [
|
@@ -383,7 +383,7 @@
|
|
383
383
|
},
|
384
384
|
"locationInModule": {
|
385
385
|
"filename": "src/certificate/index.ts",
|
386
|
-
"line":
|
386
|
+
"line": 1188
|
387
387
|
},
|
388
388
|
"name": "putTlsChallenge",
|
389
389
|
"parameters": [
|
@@ -401,7 +401,7 @@
|
|
401
401
|
},
|
402
402
|
"locationInModule": {
|
403
403
|
"filename": "src/certificate/index.ts",
|
404
|
-
"line":
|
404
|
+
"line": 846
|
405
405
|
},
|
406
406
|
"name": "resetCertificateP12Password"
|
407
407
|
},
|
@@ -411,7 +411,7 @@
|
|
411
411
|
},
|
412
412
|
"locationInModule": {
|
413
413
|
"filename": "src/certificate/index.ts",
|
414
|
-
"line":
|
414
|
+
"line": 867
|
415
415
|
},
|
416
416
|
"name": "resetCertificateRequestPem"
|
417
417
|
},
|
@@ -421,7 +421,7 @@
|
|
421
421
|
},
|
422
422
|
"locationInModule": {
|
423
423
|
"filename": "src/certificate/index.ts",
|
424
|
-
"line":
|
424
|
+
"line": 815
|
425
425
|
},
|
426
426
|
"name": "resetCertTimeout"
|
427
427
|
},
|
@@ -431,7 +431,7 @@
|
|
431
431
|
},
|
432
432
|
"locationInModule": {
|
433
433
|
"filename": "src/certificate/index.ts",
|
434
|
-
"line":
|
434
|
+
"line": 893
|
435
435
|
},
|
436
436
|
"name": "resetCommonName"
|
437
437
|
},
|
@@ -441,7 +441,7 @@
|
|
441
441
|
},
|
442
442
|
"locationInModule": {
|
443
443
|
"filename": "src/certificate/index.ts",
|
444
|
-
"line":
|
444
|
+
"line": 909
|
445
445
|
},
|
446
446
|
"name": "resetDisableCompletePropagation"
|
447
447
|
},
|
@@ -451,7 +451,7 @@
|
|
451
451
|
},
|
452
452
|
"locationInModule": {
|
453
453
|
"filename": "src/certificate/index.ts",
|
454
|
-
"line":
|
454
|
+
"line": 1111
|
455
455
|
},
|
456
456
|
"name": "resetDnsChallenge"
|
457
457
|
},
|
@@ -461,7 +461,7 @@
|
|
461
461
|
},
|
462
462
|
"locationInModule": {
|
463
463
|
"filename": "src/certificate/index.ts",
|
464
|
-
"line":
|
464
|
+
"line": 1127
|
465
465
|
},
|
466
466
|
"name": "resetHttpChallenge"
|
467
467
|
},
|
@@ -471,7 +471,7 @@
|
|
471
471
|
},
|
472
472
|
"locationInModule": {
|
473
473
|
"filename": "src/certificate/index.ts",
|
474
|
-
"line":
|
474
|
+
"line": 1143
|
475
475
|
},
|
476
476
|
"name": "resetHttpMemcachedChallenge"
|
477
477
|
},
|
@@ -481,7 +481,7 @@
|
|
481
481
|
},
|
482
482
|
"locationInModule": {
|
483
483
|
"filename": "src/certificate/index.ts",
|
484
|
-
"line":
|
484
|
+
"line": 1159
|
485
485
|
},
|
486
486
|
"name": "resetHttpS3Challenge"
|
487
487
|
},
|
@@ -491,7 +491,7 @@
|
|
491
491
|
},
|
492
492
|
"locationInModule": {
|
493
493
|
"filename": "src/certificate/index.ts",
|
494
|
-
"line":
|
494
|
+
"line": 1175
|
495
495
|
},
|
496
496
|
"name": "resetHttpWebrootChallenge"
|
497
497
|
},
|
@@ -501,7 +501,7 @@
|
|
501
501
|
},
|
502
502
|
"locationInModule": {
|
503
503
|
"filename": "src/certificate/index.ts",
|
504
|
-
"line":
|
504
|
+
"line": 925
|
505
505
|
},
|
506
506
|
"name": "resetId"
|
507
507
|
},
|
@@ -511,7 +511,7 @@
|
|
511
511
|
},
|
512
512
|
"locationInModule": {
|
513
513
|
"filename": "src/certificate/index.ts",
|
514
|
-
"line":
|
514
|
+
"line": 946
|
515
515
|
},
|
516
516
|
"name": "resetKeyType"
|
517
517
|
},
|
@@ -521,7 +521,7 @@
|
|
521
521
|
},
|
522
522
|
"locationInModule": {
|
523
523
|
"filename": "src/certificate/index.ts",
|
524
|
-
"line":
|
524
|
+
"line": 962
|
525
525
|
},
|
526
526
|
"name": "resetMinDaysRemaining"
|
527
527
|
},
|
@@ -531,7 +531,7 @@
|
|
531
531
|
},
|
532
532
|
"locationInModule": {
|
533
533
|
"filename": "src/certificate/index.ts",
|
534
|
-
"line":
|
534
|
+
"line": 978
|
535
535
|
},
|
536
536
|
"name": "resetMustStaple"
|
537
537
|
},
|
@@ -541,7 +541,7 @@
|
|
541
541
|
},
|
542
542
|
"locationInModule": {
|
543
543
|
"filename": "src/certificate/index.ts",
|
544
|
-
"line":
|
544
|
+
"line": 994
|
545
545
|
},
|
546
546
|
"name": "resetPreCheckDelay"
|
547
547
|
},
|
@@ -551,7 +551,7 @@
|
|
551
551
|
},
|
552
552
|
"locationInModule": {
|
553
553
|
"filename": "src/certificate/index.ts",
|
554
|
-
"line":
|
554
|
+
"line": 1010
|
555
555
|
},
|
556
556
|
"name": "resetPreferredChain"
|
557
557
|
},
|
@@ -561,7 +561,17 @@
|
|
561
561
|
},
|
562
562
|
"locationInModule": {
|
563
563
|
"filename": "src/certificate/index.ts",
|
564
|
-
"line":
|
564
|
+
"line": 1031
|
565
|
+
},
|
566
|
+
"name": "resetProfile"
|
567
|
+
},
|
568
|
+
{
|
569
|
+
"docs": {
|
570
|
+
"stability": "stable"
|
571
|
+
},
|
572
|
+
"locationInModule": {
|
573
|
+
"filename": "src/certificate/index.ts",
|
574
|
+
"line": 1047
|
565
575
|
},
|
566
576
|
"name": "resetRecursiveNameservers"
|
567
577
|
},
|
@@ -571,7 +581,7 @@
|
|
571
581
|
},
|
572
582
|
"locationInModule": {
|
573
583
|
"filename": "src/certificate/index.ts",
|
574
|
-
"line":
|
584
|
+
"line": 1063
|
575
585
|
},
|
576
586
|
"name": "resetRevokeCertificateOnDestroy"
|
577
587
|
},
|
@@ -581,7 +591,7 @@
|
|
581
591
|
},
|
582
592
|
"locationInModule": {
|
583
593
|
"filename": "src/certificate/index.ts",
|
584
|
-
"line":
|
594
|
+
"line": 1079
|
585
595
|
},
|
586
596
|
"name": "resetRevokeCertificateReason"
|
587
597
|
},
|
@@ -591,7 +601,7 @@
|
|
591
601
|
},
|
592
602
|
"locationInModule": {
|
593
603
|
"filename": "src/certificate/index.ts",
|
594
|
-
"line":
|
604
|
+
"line": 1095
|
595
605
|
},
|
596
606
|
"name": "resetSubjectAlternativeNames"
|
597
607
|
},
|
@@ -601,7 +611,7 @@
|
|
601
611
|
},
|
602
612
|
"locationInModule": {
|
603
613
|
"filename": "src/certificate/index.ts",
|
604
|
-
"line":
|
614
|
+
"line": 1191
|
605
615
|
},
|
606
616
|
"name": "resetTlsChallenge"
|
607
617
|
},
|
@@ -611,7 +621,7 @@
|
|
611
621
|
},
|
612
622
|
"locationInModule": {
|
613
623
|
"filename": "src/certificate/index.ts",
|
614
|
-
"line":
|
624
|
+
"line": 1203
|
615
625
|
},
|
616
626
|
"name": "synthesizeAttributes",
|
617
627
|
"overrides": "cdktf.TerraformResource",
|
@@ -633,7 +643,7 @@
|
|
633
643
|
},
|
634
644
|
"locationInModule": {
|
635
645
|
"filename": "src/certificate/index.ts",
|
636
|
-
"line":
|
646
|
+
"line": 1231
|
637
647
|
},
|
638
648
|
"name": "synthesizeHclAttributes",
|
639
649
|
"overrides": "cdktf.TerraformResource",
|
@@ -661,7 +671,7 @@
|
|
661
671
|
"immutable": true,
|
662
672
|
"locationInModule": {
|
663
673
|
"filename": "src/certificate/index.ts",
|
664
|
-
"line":
|
674
|
+
"line": 722
|
665
675
|
},
|
666
676
|
"name": "tfResourceType",
|
667
677
|
"static": true,
|
@@ -676,7 +686,7 @@
|
|
676
686
|
"immutable": true,
|
677
687
|
"locationInModule": {
|
678
688
|
"filename": "src/certificate/index.ts",
|
679
|
-
"line":
|
689
|
+
"line": 824
|
680
690
|
},
|
681
691
|
"name": "certificateDomain",
|
682
692
|
"type": {
|
@@ -690,7 +700,7 @@
|
|
690
700
|
"immutable": true,
|
691
701
|
"locationInModule": {
|
692
702
|
"filename": "src/certificate/index.ts",
|
693
|
-
"line":
|
703
|
+
"line": 829
|
694
704
|
},
|
695
705
|
"name": "certificateNotAfter",
|
696
706
|
"type": {
|
@@ -704,7 +714,7 @@
|
|
704
714
|
"immutable": true,
|
705
715
|
"locationInModule": {
|
706
716
|
"filename": "src/certificate/index.ts",
|
707
|
-
"line":
|
717
|
+
"line": 834
|
708
718
|
},
|
709
719
|
"name": "certificateP12",
|
710
720
|
"type": {
|
@@ -718,7 +728,7 @@
|
|
718
728
|
"immutable": true,
|
719
729
|
"locationInModule": {
|
720
730
|
"filename": "src/certificate/index.ts",
|
721
|
-
"line":
|
731
|
+
"line": 855
|
722
732
|
},
|
723
733
|
"name": "certificatePem",
|
724
734
|
"type": {
|
@@ -732,7 +742,7 @@
|
|
732
742
|
"immutable": true,
|
733
743
|
"locationInModule": {
|
734
744
|
"filename": "src/certificate/index.ts",
|
735
|
-
"line":
|
745
|
+
"line": 876
|
736
746
|
},
|
737
747
|
"name": "certificateSerial",
|
738
748
|
"type": {
|
@@ -746,7 +756,7 @@
|
|
746
756
|
"immutable": true,
|
747
757
|
"locationInModule": {
|
748
758
|
"filename": "src/certificate/index.ts",
|
749
|
-
"line":
|
759
|
+
"line": 881
|
750
760
|
},
|
751
761
|
"name": "certificateUrl",
|
752
762
|
"type": {
|
@@ -760,7 +770,7 @@
|
|
760
770
|
"immutable": true,
|
761
771
|
"locationInModule": {
|
762
772
|
"filename": "src/certificate/index.ts",
|
763
|
-
"line":
|
773
|
+
"line": 1105
|
764
774
|
},
|
765
775
|
"name": "dnsChallenge",
|
766
776
|
"type": {
|
@@ -774,7 +784,7 @@
|
|
774
784
|
"immutable": true,
|
775
785
|
"locationInModule": {
|
776
786
|
"filename": "src/certificate/index.ts",
|
777
|
-
"line":
|
787
|
+
"line": 1121
|
778
788
|
},
|
779
789
|
"name": "httpChallenge",
|
780
790
|
"type": {
|
@@ -788,7 +798,7 @@
|
|
788
798
|
"immutable": true,
|
789
799
|
"locationInModule": {
|
790
800
|
"filename": "src/certificate/index.ts",
|
791
|
-
"line":
|
801
|
+
"line": 1137
|
792
802
|
},
|
793
803
|
"name": "httpMemcachedChallenge",
|
794
804
|
"type": {
|
@@ -802,7 +812,7 @@
|
|
802
812
|
"immutable": true,
|
803
813
|
"locationInModule": {
|
804
814
|
"filename": "src/certificate/index.ts",
|
805
|
-
"line":
|
815
|
+
"line": 1153
|
806
816
|
},
|
807
817
|
"name": "httpS3Challenge",
|
808
818
|
"type": {
|
@@ -816,7 +826,7 @@
|
|
816
826
|
"immutable": true,
|
817
827
|
"locationInModule": {
|
818
828
|
"filename": "src/certificate/index.ts",
|
819
|
-
"line":
|
829
|
+
"line": 1169
|
820
830
|
},
|
821
831
|
"name": "httpWebrootChallenge",
|
822
832
|
"type": {
|
@@ -830,7 +840,7 @@
|
|
830
840
|
"immutable": true,
|
831
841
|
"locationInModule": {
|
832
842
|
"filename": "src/certificate/index.ts",
|
833
|
-
"line":
|
843
|
+
"line": 934
|
834
844
|
},
|
835
845
|
"name": "issuerPem",
|
836
846
|
"type": {
|
@@ -844,7 +854,7 @@
|
|
844
854
|
"immutable": true,
|
845
855
|
"locationInModule": {
|
846
856
|
"filename": "src/certificate/index.ts",
|
847
|
-
"line":
|
857
|
+
"line": 1019
|
848
858
|
},
|
849
859
|
"name": "privateKeyPem",
|
850
860
|
"type": {
|
@@ -858,7 +868,7 @@
|
|
858
868
|
"immutable": true,
|
859
869
|
"locationInModule": {
|
860
870
|
"filename": "src/certificate/index.ts",
|
861
|
-
"line":
|
871
|
+
"line": 1185
|
862
872
|
},
|
863
873
|
"name": "tlsChallenge",
|
864
874
|
"type": {
|
@@ -872,7 +882,7 @@
|
|
872
882
|
"immutable": true,
|
873
883
|
"locationInModule": {
|
874
884
|
"filename": "src/certificate/index.ts",
|
875
|
-
"line":
|
885
|
+
"line": 803
|
876
886
|
},
|
877
887
|
"name": "accountKeyPemInput",
|
878
888
|
"optional": true,
|
@@ -887,7 +897,7 @@
|
|
887
897
|
"immutable": true,
|
888
898
|
"locationInModule": {
|
889
899
|
"filename": "src/certificate/index.ts",
|
890
|
-
"line":
|
900
|
+
"line": 850
|
891
901
|
},
|
892
902
|
"name": "certificateP12PasswordInput",
|
893
903
|
"optional": true,
|
@@ -902,7 +912,7 @@
|
|
902
912
|
"immutable": true,
|
903
913
|
"locationInModule": {
|
904
914
|
"filename": "src/certificate/index.ts",
|
905
|
-
"line":
|
915
|
+
"line": 871
|
906
916
|
},
|
907
917
|
"name": "certificateRequestPemInput",
|
908
918
|
"optional": true,
|
@@ -917,7 +927,7 @@
|
|
917
927
|
"immutable": true,
|
918
928
|
"locationInModule": {
|
919
929
|
"filename": "src/certificate/index.ts",
|
920
|
-
"line":
|
930
|
+
"line": 819
|
921
931
|
},
|
922
932
|
"name": "certTimeoutInput",
|
923
933
|
"optional": true,
|
@@ -932,7 +942,7 @@
|
|
932
942
|
"immutable": true,
|
933
943
|
"locationInModule": {
|
934
944
|
"filename": "src/certificate/index.ts",
|
935
|
-
"line":
|
945
|
+
"line": 897
|
936
946
|
},
|
937
947
|
"name": "commonNameInput",
|
938
948
|
"optional": true,
|
@@ -947,7 +957,7 @@
|
|
947
957
|
"immutable": true,
|
948
958
|
"locationInModule": {
|
949
959
|
"filename": "src/certificate/index.ts",
|
950
|
-
"line":
|
960
|
+
"line": 913
|
951
961
|
},
|
952
962
|
"name": "disableCompletePropagationInput",
|
953
963
|
"optional": true,
|
@@ -971,7 +981,7 @@
|
|
971
981
|
"immutable": true,
|
972
982
|
"locationInModule": {
|
973
983
|
"filename": "src/certificate/index.ts",
|
974
|
-
"line":
|
984
|
+
"line": 1115
|
975
985
|
},
|
976
986
|
"name": "dnsChallengeInput",
|
977
987
|
"optional": true,
|
@@ -1000,7 +1010,7 @@
|
|
1000
1010
|
"immutable": true,
|
1001
1011
|
"locationInModule": {
|
1002
1012
|
"filename": "src/certificate/index.ts",
|
1003
|
-
"line":
|
1013
|
+
"line": 1131
|
1004
1014
|
},
|
1005
1015
|
"name": "httpChallengeInput",
|
1006
1016
|
"optional": true,
|
@@ -1015,7 +1025,7 @@
|
|
1015
1025
|
"immutable": true,
|
1016
1026
|
"locationInModule": {
|
1017
1027
|
"filename": "src/certificate/index.ts",
|
1018
|
-
"line":
|
1028
|
+
"line": 1147
|
1019
1029
|
},
|
1020
1030
|
"name": "httpMemcachedChallengeInput",
|
1021
1031
|
"optional": true,
|
@@ -1030,7 +1040,7 @@
|
|
1030
1040
|
"immutable": true,
|
1031
1041
|
"locationInModule": {
|
1032
1042
|
"filename": "src/certificate/index.ts",
|
1033
|
-
"line":
|
1043
|
+
"line": 1163
|
1034
1044
|
},
|
1035
1045
|
"name": "httpS3ChallengeInput",
|
1036
1046
|
"optional": true,
|
@@ -1045,7 +1055,7 @@
|
|
1045
1055
|
"immutable": true,
|
1046
1056
|
"locationInModule": {
|
1047
1057
|
"filename": "src/certificate/index.ts",
|
1048
|
-
"line":
|
1058
|
+
"line": 1179
|
1049
1059
|
},
|
1050
1060
|
"name": "httpWebrootChallengeInput",
|
1051
1061
|
"optional": true,
|
@@ -1060,7 +1070,7 @@
|
|
1060
1070
|
"immutable": true,
|
1061
1071
|
"locationInModule": {
|
1062
1072
|
"filename": "src/certificate/index.ts",
|
1063
|
-
"line":
|
1073
|
+
"line": 929
|
1064
1074
|
},
|
1065
1075
|
"name": "idInput",
|
1066
1076
|
"optional": true,
|
@@ -1075,7 +1085,7 @@
|
|
1075
1085
|
"immutable": true,
|
1076
1086
|
"locationInModule": {
|
1077
1087
|
"filename": "src/certificate/index.ts",
|
1078
|
-
"line":
|
1088
|
+
"line": 950
|
1079
1089
|
},
|
1080
1090
|
"name": "keyTypeInput",
|
1081
1091
|
"optional": true,
|
@@ -1090,7 +1100,7 @@
|
|
1090
1100
|
"immutable": true,
|
1091
1101
|
"locationInModule": {
|
1092
1102
|
"filename": "src/certificate/index.ts",
|
1093
|
-
"line":
|
1103
|
+
"line": 966
|
1094
1104
|
},
|
1095
1105
|
"name": "minDaysRemainingInput",
|
1096
1106
|
"optional": true,
|
@@ -1105,7 +1115,7 @@
|
|
1105
1115
|
"immutable": true,
|
1106
1116
|
"locationInModule": {
|
1107
1117
|
"filename": "src/certificate/index.ts",
|
1108
|
-
"line":
|
1118
|
+
"line": 982
|
1109
1119
|
},
|
1110
1120
|
"name": "mustStapleInput",
|
1111
1121
|
"optional": true,
|
@@ -1129,7 +1139,7 @@
|
|
1129
1139
|
"immutable": true,
|
1130
1140
|
"locationInModule": {
|
1131
1141
|
"filename": "src/certificate/index.ts",
|
1132
|
-
"line":
|
1142
|
+
"line": 998
|
1133
1143
|
},
|
1134
1144
|
"name": "preCheckDelayInput",
|
1135
1145
|
"optional": true,
|
@@ -1144,7 +1154,7 @@
|
|
1144
1154
|
"immutable": true,
|
1145
1155
|
"locationInModule": {
|
1146
1156
|
"filename": "src/certificate/index.ts",
|
1147
|
-
"line":
|
1157
|
+
"line": 1014
|
1148
1158
|
},
|
1149
1159
|
"name": "preferredChainInput",
|
1150
1160
|
"optional": true,
|
@@ -1159,7 +1169,22 @@
|
|
1159
1169
|
"immutable": true,
|
1160
1170
|
"locationInModule": {
|
1161
1171
|
"filename": "src/certificate/index.ts",
|
1162
|
-
"line":
|
1172
|
+
"line": 1035
|
1173
|
+
},
|
1174
|
+
"name": "profileInput",
|
1175
|
+
"optional": true,
|
1176
|
+
"type": {
|
1177
|
+
"primitive": "string"
|
1178
|
+
}
|
1179
|
+
},
|
1180
|
+
{
|
1181
|
+
"docs": {
|
1182
|
+
"stability": "stable"
|
1183
|
+
},
|
1184
|
+
"immutable": true,
|
1185
|
+
"locationInModule": {
|
1186
|
+
"filename": "src/certificate/index.ts",
|
1187
|
+
"line": 1051
|
1163
1188
|
},
|
1164
1189
|
"name": "recursiveNameserversInput",
|
1165
1190
|
"optional": true,
|
@@ -1179,7 +1204,7 @@
|
|
1179
1204
|
"immutable": true,
|
1180
1205
|
"locationInModule": {
|
1181
1206
|
"filename": "src/certificate/index.ts",
|
1182
|
-
"line":
|
1207
|
+
"line": 1067
|
1183
1208
|
},
|
1184
1209
|
"name": "revokeCertificateOnDestroyInput",
|
1185
1210
|
"optional": true,
|
@@ -1203,7 +1228,7 @@
|
|
1203
1228
|
"immutable": true,
|
1204
1229
|
"locationInModule": {
|
1205
1230
|
"filename": "src/certificate/index.ts",
|
1206
|
-
"line":
|
1231
|
+
"line": 1083
|
1207
1232
|
},
|
1208
1233
|
"name": "revokeCertificateReasonInput",
|
1209
1234
|
"optional": true,
|
@@ -1218,7 +1243,7 @@
|
|
1218
1243
|
"immutable": true,
|
1219
1244
|
"locationInModule": {
|
1220
1245
|
"filename": "src/certificate/index.ts",
|
1221
|
-
"line":
|
1246
|
+
"line": 1099
|
1222
1247
|
},
|
1223
1248
|
"name": "subjectAlternativeNamesInput",
|
1224
1249
|
"optional": true,
|
@@ -1238,7 +1263,7 @@
|
|
1238
1263
|
"immutable": true,
|
1239
1264
|
"locationInModule": {
|
1240
1265
|
"filename": "src/certificate/index.ts",
|
1241
|
-
"line":
|
1266
|
+
"line": 1195
|
1242
1267
|
},
|
1243
1268
|
"name": "tlsChallengeInput",
|
1244
1269
|
"optional": true,
|
@@ -1252,7 +1277,7 @@
|
|
1252
1277
|
},
|
1253
1278
|
"locationInModule": {
|
1254
1279
|
"filename": "src/certificate/index.ts",
|
1255
|
-
"line":
|
1280
|
+
"line": 796
|
1256
1281
|
},
|
1257
1282
|
"name": "accountKeyPem",
|
1258
1283
|
"type": {
|
@@ -1265,7 +1290,7 @@
|
|
1265
1290
|
},
|
1266
1291
|
"locationInModule": {
|
1267
1292
|
"filename": "src/certificate/index.ts",
|
1268
|
-
"line":
|
1293
|
+
"line": 840
|
1269
1294
|
},
|
1270
1295
|
"name": "certificateP12Password",
|
1271
1296
|
"type": {
|
@@ -1278,7 +1303,7 @@
|
|
1278
1303
|
},
|
1279
1304
|
"locationInModule": {
|
1280
1305
|
"filename": "src/certificate/index.ts",
|
1281
|
-
"line":
|
1306
|
+
"line": 861
|
1282
1307
|
},
|
1283
1308
|
"name": "certificateRequestPem",
|
1284
1309
|
"type": {
|
@@ -1291,7 +1316,7 @@
|
|
1291
1316
|
},
|
1292
1317
|
"locationInModule": {
|
1293
1318
|
"filename": "src/certificate/index.ts",
|
1294
|
-
"line":
|
1319
|
+
"line": 809
|
1295
1320
|
},
|
1296
1321
|
"name": "certTimeout",
|
1297
1322
|
"type": {
|
@@ -1304,7 +1329,7 @@
|
|
1304
1329
|
},
|
1305
1330
|
"locationInModule": {
|
1306
1331
|
"filename": "src/certificate/index.ts",
|
1307
|
-
"line":
|
1332
|
+
"line": 887
|
1308
1333
|
},
|
1309
1334
|
"name": "commonName",
|
1310
1335
|
"type": {
|
@@ -1317,7 +1342,7 @@
|
|
1317
1342
|
},
|
1318
1343
|
"locationInModule": {
|
1319
1344
|
"filename": "src/certificate/index.ts",
|
1320
|
-
"line":
|
1345
|
+
"line": 903
|
1321
1346
|
},
|
1322
1347
|
"name": "disableCompletePropagation",
|
1323
1348
|
"type": {
|
@@ -1339,7 +1364,7 @@
|
|
1339
1364
|
},
|
1340
1365
|
"locationInModule": {
|
1341
1366
|
"filename": "src/certificate/index.ts",
|
1342
|
-
"line":
|
1367
|
+
"line": 919
|
1343
1368
|
},
|
1344
1369
|
"name": "id",
|
1345
1370
|
"type": {
|
@@ -1352,7 +1377,7 @@
|
|
1352
1377
|
},
|
1353
1378
|
"locationInModule": {
|
1354
1379
|
"filename": "src/certificate/index.ts",
|
1355
|
-
"line":
|
1380
|
+
"line": 940
|
1356
1381
|
},
|
1357
1382
|
"name": "keyType",
|
1358
1383
|
"type": {
|
@@ -1365,7 +1390,7 @@
|
|
1365
1390
|
},
|
1366
1391
|
"locationInModule": {
|
1367
1392
|
"filename": "src/certificate/index.ts",
|
1368
|
-
"line":
|
1393
|
+
"line": 956
|
1369
1394
|
},
|
1370
1395
|
"name": "minDaysRemaining",
|
1371
1396
|
"type": {
|
@@ -1378,7 +1403,7 @@
|
|
1378
1403
|
},
|
1379
1404
|
"locationInModule": {
|
1380
1405
|
"filename": "src/certificate/index.ts",
|
1381
|
-
"line":
|
1406
|
+
"line": 972
|
1382
1407
|
},
|
1383
1408
|
"name": "mustStaple",
|
1384
1409
|
"type": {
|
@@ -1400,7 +1425,7 @@
|
|
1400
1425
|
},
|
1401
1426
|
"locationInModule": {
|
1402
1427
|
"filename": "src/certificate/index.ts",
|
1403
|
-
"line":
|
1428
|
+
"line": 988
|
1404
1429
|
},
|
1405
1430
|
"name": "preCheckDelay",
|
1406
1431
|
"type": {
|
@@ -1413,7 +1438,7 @@
|
|
1413
1438
|
},
|
1414
1439
|
"locationInModule": {
|
1415
1440
|
"filename": "src/certificate/index.ts",
|
1416
|
-
"line":
|
1441
|
+
"line": 1004
|
1417
1442
|
},
|
1418
1443
|
"name": "preferredChain",
|
1419
1444
|
"type": {
|
@@ -1426,7 +1451,20 @@
|
|
1426
1451
|
},
|
1427
1452
|
"locationInModule": {
|
1428
1453
|
"filename": "src/certificate/index.ts",
|
1429
|
-
"line":
|
1454
|
+
"line": 1025
|
1455
|
+
},
|
1456
|
+
"name": "profile",
|
1457
|
+
"type": {
|
1458
|
+
"primitive": "string"
|
1459
|
+
}
|
1460
|
+
},
|
1461
|
+
{
|
1462
|
+
"docs": {
|
1463
|
+
"stability": "stable"
|
1464
|
+
},
|
1465
|
+
"locationInModule": {
|
1466
|
+
"filename": "src/certificate/index.ts",
|
1467
|
+
"line": 1041
|
1430
1468
|
},
|
1431
1469
|
"name": "recursiveNameservers",
|
1432
1470
|
"type": {
|
@@ -1444,7 +1482,7 @@
|
|
1444
1482
|
},
|
1445
1483
|
"locationInModule": {
|
1446
1484
|
"filename": "src/certificate/index.ts",
|
1447
|
-
"line":
|
1485
|
+
"line": 1057
|
1448
1486
|
},
|
1449
1487
|
"name": "revokeCertificateOnDestroy",
|
1450
1488
|
"type": {
|
@@ -1466,7 +1504,7 @@
|
|
1466
1504
|
},
|
1467
1505
|
"locationInModule": {
|
1468
1506
|
"filename": "src/certificate/index.ts",
|
1469
|
-
"line":
|
1507
|
+
"line": 1073
|
1470
1508
|
},
|
1471
1509
|
"name": "revokeCertificateReason",
|
1472
1510
|
"type": {
|
@@ -1479,7 +1517,7 @@
|
|
1479
1517
|
},
|
1480
1518
|
"locationInModule": {
|
1481
1519
|
"filename": "src/certificate/index.ts",
|
1482
|
-
"line":
|
1520
|
+
"line": 1089
|
1483
1521
|
},
|
1484
1522
|
"name": "subjectAlternativeNames",
|
1485
1523
|
"type": {
|
@@ -1516,7 +1554,7 @@
|
|
1516
1554
|
"abstract": true,
|
1517
1555
|
"docs": {
|
1518
1556
|
"stability": "stable",
|
1519
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
1557
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs/resources/certificate#account_key_pem Certificate#account_key_pem}."
|
1520
1558
|
},
|
1521
1559
|
"immutable": true,
|
1522
1560
|
"locationInModule": {
|
@@ -1532,7 +1570,7 @@
|
|
1532
1570
|
"abstract": true,
|
1533
1571
|
"docs": {
|
1534
1572
|
"stability": "stable",
|
1535
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
1573
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs/resources/certificate#certificate_p12_password Certificate#certificate_p12_password}."
|
1536
1574
|
},
|
1537
1575
|
"immutable": true,
|
1538
1576
|
"locationInModule": {
|
@@ -1549,7 +1587,7 @@
|
|
1549
1587
|
"abstract": true,
|
1550
1588
|
"docs": {
|
1551
1589
|
"stability": "stable",
|
1552
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
1590
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs/resources/certificate#certificate_request_pem Certificate#certificate_request_pem}."
|
1553
1591
|
},
|
1554
1592
|
"immutable": true,
|
1555
1593
|
"locationInModule": {
|
@@ -1566,7 +1604,7 @@
|
|
1566
1604
|
"abstract": true,
|
1567
1605
|
"docs": {
|
1568
1606
|
"stability": "stable",
|
1569
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
1607
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs/resources/certificate#cert_timeout Certificate#cert_timeout}."
|
1570
1608
|
},
|
1571
1609
|
"immutable": true,
|
1572
1610
|
"locationInModule": {
|
@@ -1583,7 +1621,7 @@
|
|
1583
1621
|
"abstract": true,
|
1584
1622
|
"docs": {
|
1585
1623
|
"stability": "stable",
|
1586
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
1624
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs/resources/certificate#common_name Certificate#common_name}."
|
1587
1625
|
},
|
1588
1626
|
"immutable": true,
|
1589
1627
|
"locationInModule": {
|
@@ -1600,7 +1638,7 @@
|
|
1600
1638
|
"abstract": true,
|
1601
1639
|
"docs": {
|
1602
1640
|
"stability": "stable",
|
1603
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
1641
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs/resources/certificate#disable_complete_propagation Certificate#disable_complete_propagation}."
|
1604
1642
|
},
|
1605
1643
|
"immutable": true,
|
1606
1644
|
"locationInModule": {
|
@@ -1625,14 +1663,14 @@
|
|
1625
1663
|
{
|
1626
1664
|
"abstract": true,
|
1627
1665
|
"docs": {
|
1628
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
1666
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs/resources/certificate#dns_challenge Certificate#dns_challenge}",
|
1629
1667
|
"stability": "stable",
|
1630
1668
|
"summary": "dns_challenge block."
|
1631
1669
|
},
|
1632
1670
|
"immutable": true,
|
1633
1671
|
"locationInModule": {
|
1634
1672
|
"filename": "src/certificate/index.ts",
|
1635
|
-
"line":
|
1673
|
+
"line": 91
|
1636
1674
|
},
|
1637
1675
|
"name": "dnsChallenge",
|
1638
1676
|
"optional": true,
|
@@ -1657,14 +1695,14 @@
|
|
1657
1695
|
{
|
1658
1696
|
"abstract": true,
|
1659
1697
|
"docs": {
|
1660
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
1698
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs/resources/certificate#http_challenge Certificate#http_challenge}",
|
1661
1699
|
"stability": "stable",
|
1662
1700
|
"summary": "http_challenge block."
|
1663
1701
|
},
|
1664
1702
|
"immutable": true,
|
1665
1703
|
"locationInModule": {
|
1666
1704
|
"filename": "src/certificate/index.ts",
|
1667
|
-
"line":
|
1705
|
+
"line": 97
|
1668
1706
|
},
|
1669
1707
|
"name": "httpChallenge",
|
1670
1708
|
"optional": true,
|
@@ -1675,14 +1713,14 @@
|
|
1675
1713
|
{
|
1676
1714
|
"abstract": true,
|
1677
1715
|
"docs": {
|
1678
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
1716
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs/resources/certificate#http_memcached_challenge Certificate#http_memcached_challenge}",
|
1679
1717
|
"stability": "stable",
|
1680
1718
|
"summary": "http_memcached_challenge block."
|
1681
1719
|
},
|
1682
1720
|
"immutable": true,
|
1683
1721
|
"locationInModule": {
|
1684
1722
|
"filename": "src/certificate/index.ts",
|
1685
|
-
"line":
|
1723
|
+
"line": 103
|
1686
1724
|
},
|
1687
1725
|
"name": "httpMemcachedChallenge",
|
1688
1726
|
"optional": true,
|
@@ -1693,14 +1731,14 @@
|
|
1693
1731
|
{
|
1694
1732
|
"abstract": true,
|
1695
1733
|
"docs": {
|
1696
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
1734
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs/resources/certificate#http_s3_challenge Certificate#http_s3_challenge}",
|
1697
1735
|
"stability": "stable",
|
1698
1736
|
"summary": "http_s3_challenge block."
|
1699
1737
|
},
|
1700
1738
|
"immutable": true,
|
1701
1739
|
"locationInModule": {
|
1702
1740
|
"filename": "src/certificate/index.ts",
|
1703
|
-
"line":
|
1741
|
+
"line": 109
|
1704
1742
|
},
|
1705
1743
|
"name": "httpS3Challenge",
|
1706
1744
|
"optional": true,
|
@@ -1711,14 +1749,14 @@
|
|
1711
1749
|
{
|
1712
1750
|
"abstract": true,
|
1713
1751
|
"docs": {
|
1714
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
1752
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs/resources/certificate#http_webroot_challenge Certificate#http_webroot_challenge}",
|
1715
1753
|
"stability": "stable",
|
1716
1754
|
"summary": "http_webroot_challenge block."
|
1717
1755
|
},
|
1718
1756
|
"immutable": true,
|
1719
1757
|
"locationInModule": {
|
1720
1758
|
"filename": "src/certificate/index.ts",
|
1721
|
-
"line":
|
1759
|
+
"line": 115
|
1722
1760
|
},
|
1723
1761
|
"name": "httpWebrootChallenge",
|
1724
1762
|
"optional": true,
|
@@ -1731,7 +1769,7 @@
|
|
1731
1769
|
"docs": {
|
1732
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.",
|
1733
1771
|
"stability": "stable",
|
1734
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
1772
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs/resources/certificate#id Certificate#id}."
|
1735
1773
|
},
|
1736
1774
|
"immutable": true,
|
1737
1775
|
"locationInModule": {
|
@@ -1748,7 +1786,7 @@
|
|
1748
1786
|
"abstract": true,
|
1749
1787
|
"docs": {
|
1750
1788
|
"stability": "stable",
|
1751
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
1789
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs/resources/certificate#key_type Certificate#key_type}."
|
1752
1790
|
},
|
1753
1791
|
"immutable": true,
|
1754
1792
|
"locationInModule": {
|
@@ -1765,7 +1803,7 @@
|
|
1765
1803
|
"abstract": true,
|
1766
1804
|
"docs": {
|
1767
1805
|
"stability": "stable",
|
1768
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
1806
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs/resources/certificate#min_days_remaining Certificate#min_days_remaining}."
|
1769
1807
|
},
|
1770
1808
|
"immutable": true,
|
1771
1809
|
"locationInModule": {
|
@@ -1782,7 +1820,7 @@
|
|
1782
1820
|
"abstract": true,
|
1783
1821
|
"docs": {
|
1784
1822
|
"stability": "stable",
|
1785
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
1823
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs/resources/certificate#must_staple Certificate#must_staple}."
|
1786
1824
|
},
|
1787
1825
|
"immutable": true,
|
1788
1826
|
"locationInModule": {
|
@@ -1808,7 +1846,7 @@
|
|
1808
1846
|
"abstract": true,
|
1809
1847
|
"docs": {
|
1810
1848
|
"stability": "stable",
|
1811
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
1849
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs/resources/certificate#pre_check_delay Certificate#pre_check_delay}."
|
1812
1850
|
},
|
1813
1851
|
"immutable": true,
|
1814
1852
|
"locationInModule": {
|
@@ -1825,7 +1863,7 @@
|
|
1825
1863
|
"abstract": true,
|
1826
1864
|
"docs": {
|
1827
1865
|
"stability": "stable",
|
1828
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
1866
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs/resources/certificate#preferred_chain Certificate#preferred_chain}."
|
1829
1867
|
},
|
1830
1868
|
"immutable": true,
|
1831
1869
|
"locationInModule": {
|
@@ -1842,13 +1880,30 @@
|
|
1842
1880
|
"abstract": true,
|
1843
1881
|
"docs": {
|
1844
1882
|
"stability": "stable",
|
1845
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
1883
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs/resources/certificate#profile Certificate#profile}."
|
1846
1884
|
},
|
1847
1885
|
"immutable": true,
|
1848
1886
|
"locationInModule": {
|
1849
1887
|
"filename": "src/certificate/index.ts",
|
1850
1888
|
"line": 69
|
1851
1889
|
},
|
1890
|
+
"name": "profile",
|
1891
|
+
"optional": true,
|
1892
|
+
"type": {
|
1893
|
+
"primitive": "string"
|
1894
|
+
}
|
1895
|
+
},
|
1896
|
+
{
|
1897
|
+
"abstract": true,
|
1898
|
+
"docs": {
|
1899
|
+
"stability": "stable",
|
1900
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs/resources/certificate#recursive_nameservers Certificate#recursive_nameservers}."
|
1901
|
+
},
|
1902
|
+
"immutable": true,
|
1903
|
+
"locationInModule": {
|
1904
|
+
"filename": "src/certificate/index.ts",
|
1905
|
+
"line": 73
|
1906
|
+
},
|
1852
1907
|
"name": "recursiveNameservers",
|
1853
1908
|
"optional": true,
|
1854
1909
|
"type": {
|
@@ -1864,12 +1919,12 @@
|
|
1864
1919
|
"abstract": true,
|
1865
1920
|
"docs": {
|
1866
1921
|
"stability": "stable",
|
1867
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
1922
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs/resources/certificate#revoke_certificate_on_destroy Certificate#revoke_certificate_on_destroy}."
|
1868
1923
|
},
|
1869
1924
|
"immutable": true,
|
1870
1925
|
"locationInModule": {
|
1871
1926
|
"filename": "src/certificate/index.ts",
|
1872
|
-
"line":
|
1927
|
+
"line": 77
|
1873
1928
|
},
|
1874
1929
|
"name": "revokeCertificateOnDestroy",
|
1875
1930
|
"optional": true,
|
@@ -1890,12 +1945,12 @@
|
|
1890
1945
|
"abstract": true,
|
1891
1946
|
"docs": {
|
1892
1947
|
"stability": "stable",
|
1893
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
1948
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs/resources/certificate#revoke_certificate_reason Certificate#revoke_certificate_reason}."
|
1894
1949
|
},
|
1895
1950
|
"immutable": true,
|
1896
1951
|
"locationInModule": {
|
1897
1952
|
"filename": "src/certificate/index.ts",
|
1898
|
-
"line":
|
1953
|
+
"line": 81
|
1899
1954
|
},
|
1900
1955
|
"name": "revokeCertificateReason",
|
1901
1956
|
"optional": true,
|
@@ -1907,12 +1962,12 @@
|
|
1907
1962
|
"abstract": true,
|
1908
1963
|
"docs": {
|
1909
1964
|
"stability": "stable",
|
1910
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
1965
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs/resources/certificate#subject_alternative_names Certificate#subject_alternative_names}."
|
1911
1966
|
},
|
1912
1967
|
"immutable": true,
|
1913
1968
|
"locationInModule": {
|
1914
1969
|
"filename": "src/certificate/index.ts",
|
1915
|
-
"line":
|
1970
|
+
"line": 85
|
1916
1971
|
},
|
1917
1972
|
"name": "subjectAlternativeNames",
|
1918
1973
|
"optional": true,
|
@@ -1928,14 +1983,14 @@
|
|
1928
1983
|
{
|
1929
1984
|
"abstract": true,
|
1930
1985
|
"docs": {
|
1931
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
1986
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs/resources/certificate#tls_challenge Certificate#tls_challenge}",
|
1932
1987
|
"stability": "stable",
|
1933
1988
|
"summary": "tls_challenge block."
|
1934
1989
|
},
|
1935
1990
|
"immutable": true,
|
1936
1991
|
"locationInModule": {
|
1937
1992
|
"filename": "src/certificate/index.ts",
|
1938
|
-
"line":
|
1993
|
+
"line": 121
|
1939
1994
|
},
|
1940
1995
|
"name": "tlsChallenge",
|
1941
1996
|
"optional": true,
|
@@ -1956,7 +2011,7 @@
|
|
1956
2011
|
"kind": "interface",
|
1957
2012
|
"locationInModule": {
|
1958
2013
|
"filename": "src/certificate/index.ts",
|
1959
|
-
"line":
|
2014
|
+
"line": 123
|
1960
2015
|
},
|
1961
2016
|
"name": "CertificateDnsChallenge",
|
1962
2017
|
"namespace": "certificate",
|
@@ -1965,12 +2020,12 @@
|
|
1965
2020
|
"abstract": true,
|
1966
2021
|
"docs": {
|
1967
2022
|
"stability": "stable",
|
1968
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
2023
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs/resources/certificate#provider Certificate#provider}."
|
1969
2024
|
},
|
1970
2025
|
"immutable": true,
|
1971
2026
|
"locationInModule": {
|
1972
2027
|
"filename": "src/certificate/index.ts",
|
1973
|
-
"line":
|
2028
|
+
"line": 131
|
1974
2029
|
},
|
1975
2030
|
"name": "provider",
|
1976
2031
|
"type": {
|
@@ -1981,12 +2036,12 @@
|
|
1981
2036
|
"abstract": true,
|
1982
2037
|
"docs": {
|
1983
2038
|
"stability": "stable",
|
1984
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
2039
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs/resources/certificate#config Certificate#config}."
|
1985
2040
|
},
|
1986
2041
|
"immutable": true,
|
1987
2042
|
"locationInModule": {
|
1988
2043
|
"filename": "src/certificate/index.ts",
|
1989
|
-
"line":
|
2044
|
+
"line": 127
|
1990
2045
|
},
|
1991
2046
|
"name": "config",
|
1992
2047
|
"optional": true,
|
@@ -2015,7 +2070,7 @@
|
|
2015
2070
|
},
|
2016
2071
|
"locationInModule": {
|
2017
2072
|
"filename": "src/certificate/index.ts",
|
2018
|
-
"line":
|
2073
|
+
"line": 258
|
2019
2074
|
},
|
2020
2075
|
"parameters": [
|
2021
2076
|
{
|
@@ -2050,7 +2105,7 @@
|
|
2050
2105
|
"kind": "class",
|
2051
2106
|
"locationInModule": {
|
2052
2107
|
"filename": "src/certificate/index.ts",
|
2053
|
-
"line":
|
2108
|
+
"line": 250
|
2054
2109
|
},
|
2055
2110
|
"methods": [
|
2056
2111
|
{
|
@@ -2059,7 +2114,7 @@
|
|
2059
2114
|
},
|
2060
2115
|
"locationInModule": {
|
2061
2116
|
"filename": "src/certificate/index.ts",
|
2062
|
-
"line":
|
2117
|
+
"line": 265
|
2063
2118
|
},
|
2064
2119
|
"name": "get",
|
2065
2120
|
"parameters": [
|
@@ -2090,7 +2145,7 @@
|
|
2090
2145
|
},
|
2091
2146
|
"locationInModule": {
|
2092
2147
|
"filename": "src/certificate/index.ts",
|
2093
|
-
"line":
|
2148
|
+
"line": 258
|
2094
2149
|
},
|
2095
2150
|
"name": "terraformAttribute",
|
2096
2151
|
"overrides": "cdktf.ComplexList",
|
@@ -2106,7 +2161,7 @@
|
|
2106
2161
|
},
|
2107
2162
|
"locationInModule": {
|
2108
2163
|
"filename": "src/certificate/index.ts",
|
2109
|
-
"line":
|
2164
|
+
"line": 258
|
2110
2165
|
},
|
2111
2166
|
"name": "terraformResource",
|
2112
2167
|
"overrides": "cdktf.ComplexList",
|
@@ -2122,7 +2177,7 @@
|
|
2122
2177
|
},
|
2123
2178
|
"locationInModule": {
|
2124
2179
|
"filename": "src/certificate/index.ts",
|
2125
|
-
"line":
|
2180
|
+
"line": 258
|
2126
2181
|
},
|
2127
2182
|
"name": "wrapsSet",
|
2128
2183
|
"overrides": "cdktf.ComplexList",
|
@@ -2137,7 +2192,7 @@
|
|
2137
2192
|
},
|
2138
2193
|
"locationInModule": {
|
2139
2194
|
"filename": "src/certificate/index.ts",
|
2140
|
-
"line":
|
2195
|
+
"line": 251
|
2141
2196
|
},
|
2142
2197
|
"name": "internalValue",
|
2143
2198
|
"optional": true,
|
@@ -2175,7 +2230,7 @@
|
|
2175
2230
|
},
|
2176
2231
|
"locationInModule": {
|
2177
2232
|
"filename": "src/certificate/index.ts",
|
2178
|
-
"line":
|
2233
|
+
"line": 180
|
2179
2234
|
},
|
2180
2235
|
"parameters": [
|
2181
2236
|
{
|
@@ -2219,7 +2274,7 @@
|
|
2219
2274
|
"kind": "class",
|
2220
2275
|
"locationInModule": {
|
2221
2276
|
"filename": "src/certificate/index.ts",
|
2222
|
-
"line":
|
2277
|
+
"line": 170
|
2223
2278
|
},
|
2224
2279
|
"methods": [
|
2225
2280
|
{
|
@@ -2228,7 +2283,7 @@
|
|
2228
2283
|
},
|
2229
2284
|
"locationInModule": {
|
2230
2285
|
"filename": "src/certificate/index.ts",
|
2231
|
-
"line":
|
2286
|
+
"line": 228
|
2232
2287
|
},
|
2233
2288
|
"name": "resetConfig"
|
2234
2289
|
}
|
@@ -2243,7 +2298,7 @@
|
|
2243
2298
|
"immutable": true,
|
2244
2299
|
"locationInModule": {
|
2245
2300
|
"filename": "src/certificate/index.ts",
|
2246
|
-
"line":
|
2301
|
+
"line": 232
|
2247
2302
|
},
|
2248
2303
|
"name": "configInput",
|
2249
2304
|
"optional": true,
|
@@ -2263,7 +2318,7 @@
|
|
2263
2318
|
"immutable": true,
|
2264
2319
|
"locationInModule": {
|
2265
2320
|
"filename": "src/certificate/index.ts",
|
2266
|
-
"line":
|
2321
|
+
"line": 245
|
2267
2322
|
},
|
2268
2323
|
"name": "providerInput",
|
2269
2324
|
"optional": true,
|
@@ -2277,7 +2332,7 @@
|
|
2277
2332
|
},
|
2278
2333
|
"locationInModule": {
|
2279
2334
|
"filename": "src/certificate/index.ts",
|
2280
|
-
"line":
|
2335
|
+
"line": 222
|
2281
2336
|
},
|
2282
2337
|
"name": "config",
|
2283
2338
|
"type": {
|
@@ -2295,7 +2350,7 @@
|
|
2295
2350
|
},
|
2296
2351
|
"locationInModule": {
|
2297
2352
|
"filename": "src/certificate/index.ts",
|
2298
|
-
"line":
|
2353
|
+
"line": 238
|
2299
2354
|
},
|
2300
2355
|
"name": "provider",
|
2301
2356
|
"type": {
|
@@ -2308,7 +2363,7 @@
|
|
2308
2363
|
},
|
2309
2364
|
"locationInModule": {
|
2310
2365
|
"filename": "src/certificate/index.ts",
|
2311
|
-
"line":
|
2366
|
+
"line": 184
|
2312
2367
|
},
|
2313
2368
|
"name": "internalValue",
|
2314
2369
|
"optional": true,
|
@@ -2338,7 +2393,7 @@
|
|
2338
2393
|
"kind": "interface",
|
2339
2394
|
"locationInModule": {
|
2340
2395
|
"filename": "src/certificate/index.ts",
|
2341
|
-
"line":
|
2396
|
+
"line": 269
|
2342
2397
|
},
|
2343
2398
|
"name": "CertificateHttpChallenge",
|
2344
2399
|
"namespace": "certificate",
|
@@ -2347,12 +2402,12 @@
|
|
2347
2402
|
"abstract": true,
|
2348
2403
|
"docs": {
|
2349
2404
|
"stability": "stable",
|
2350
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
2405
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs/resources/certificate#port Certificate#port}."
|
2351
2406
|
},
|
2352
2407
|
"immutable": true,
|
2353
2408
|
"locationInModule": {
|
2354
2409
|
"filename": "src/certificate/index.ts",
|
2355
|
-
"line":
|
2410
|
+
"line": 273
|
2356
2411
|
},
|
2357
2412
|
"name": "port",
|
2358
2413
|
"optional": true,
|
@@ -2364,12 +2419,12 @@
|
|
2364
2419
|
"abstract": true,
|
2365
2420
|
"docs": {
|
2366
2421
|
"stability": "stable",
|
2367
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
2422
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs/resources/certificate#proxy_header Certificate#proxy_header}."
|
2368
2423
|
},
|
2369
2424
|
"immutable": true,
|
2370
2425
|
"locationInModule": {
|
2371
2426
|
"filename": "src/certificate/index.ts",
|
2372
|
-
"line":
|
2427
|
+
"line": 277
|
2373
2428
|
},
|
2374
2429
|
"name": "proxyHeader",
|
2375
2430
|
"optional": true,
|
@@ -2393,7 +2448,7 @@
|
|
2393
2448
|
},
|
2394
2449
|
"locationInModule": {
|
2395
2450
|
"filename": "src/certificate/index.ts",
|
2396
|
-
"line":
|
2451
|
+
"line": 323
|
2397
2452
|
},
|
2398
2453
|
"parameters": [
|
2399
2454
|
{
|
@@ -2419,7 +2474,7 @@
|
|
2419
2474
|
"kind": "class",
|
2420
2475
|
"locationInModule": {
|
2421
2476
|
"filename": "src/certificate/index.ts",
|
2422
|
-
"line":
|
2477
|
+
"line": 316
|
2423
2478
|
},
|
2424
2479
|
"methods": [
|
2425
2480
|
{
|
@@ -2428,7 +2483,7 @@
|
|
2428
2483
|
},
|
2429
2484
|
"locationInModule": {
|
2430
2485
|
"filename": "src/certificate/index.ts",
|
2431
|
-
"line":
|
2486
|
+
"line": 362
|
2432
2487
|
},
|
2433
2488
|
"name": "resetPort"
|
2434
2489
|
},
|
@@ -2438,7 +2493,7 @@
|
|
2438
2493
|
},
|
2439
2494
|
"locationInModule": {
|
2440
2495
|
"filename": "src/certificate/index.ts",
|
2441
|
-
"line":
|
2496
|
+
"line": 378
|
2442
2497
|
},
|
2443
2498
|
"name": "resetProxyHeader"
|
2444
2499
|
}
|
@@ -2453,7 +2508,7 @@
|
|
2453
2508
|
"immutable": true,
|
2454
2509
|
"locationInModule": {
|
2455
2510
|
"filename": "src/certificate/index.ts",
|
2456
|
-
"line":
|
2511
|
+
"line": 366
|
2457
2512
|
},
|
2458
2513
|
"name": "portInput",
|
2459
2514
|
"optional": true,
|
@@ -2468,7 +2523,7 @@
|
|
2468
2523
|
"immutable": true,
|
2469
2524
|
"locationInModule": {
|
2470
2525
|
"filename": "src/certificate/index.ts",
|
2471
|
-
"line":
|
2526
|
+
"line": 382
|
2472
2527
|
},
|
2473
2528
|
"name": "proxyHeaderInput",
|
2474
2529
|
"optional": true,
|
@@ -2482,7 +2537,7 @@
|
|
2482
2537
|
},
|
2483
2538
|
"locationInModule": {
|
2484
2539
|
"filename": "src/certificate/index.ts",
|
2485
|
-
"line":
|
2540
|
+
"line": 356
|
2486
2541
|
},
|
2487
2542
|
"name": "port",
|
2488
2543
|
"type": {
|
@@ -2495,7 +2550,7 @@
|
|
2495
2550
|
},
|
2496
2551
|
"locationInModule": {
|
2497
2552
|
"filename": "src/certificate/index.ts",
|
2498
|
-
"line":
|
2553
|
+
"line": 372
|
2499
2554
|
},
|
2500
2555
|
"name": "proxyHeader",
|
2501
2556
|
"type": {
|
@@ -2508,7 +2563,7 @@
|
|
2508
2563
|
},
|
2509
2564
|
"locationInModule": {
|
2510
2565
|
"filename": "src/certificate/index.ts",
|
2511
|
-
"line":
|
2566
|
+
"line": 327
|
2512
2567
|
},
|
2513
2568
|
"name": "internalValue",
|
2514
2569
|
"optional": true,
|
@@ -2529,7 +2584,7 @@
|
|
2529
2584
|
"kind": "interface",
|
2530
2585
|
"locationInModule": {
|
2531
2586
|
"filename": "src/certificate/index.ts",
|
2532
|
-
"line":
|
2587
|
+
"line": 386
|
2533
2588
|
},
|
2534
2589
|
"name": "CertificateHttpMemcachedChallenge",
|
2535
2590
|
"namespace": "certificate",
|
@@ -2538,12 +2593,12 @@
|
|
2538
2593
|
"abstract": true,
|
2539
2594
|
"docs": {
|
2540
2595
|
"stability": "stable",
|
2541
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
2596
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs/resources/certificate#hosts Certificate#hosts}."
|
2542
2597
|
},
|
2543
2598
|
"immutable": true,
|
2544
2599
|
"locationInModule": {
|
2545
2600
|
"filename": "src/certificate/index.ts",
|
2546
|
-
"line":
|
2601
|
+
"line": 390
|
2547
2602
|
},
|
2548
2603
|
"name": "hosts",
|
2549
2604
|
"type": {
|
@@ -2571,7 +2626,7 @@
|
|
2571
2626
|
},
|
2572
2627
|
"locationInModule": {
|
2573
2628
|
"filename": "src/certificate/index.ts",
|
2574
|
-
"line":
|
2629
|
+
"line": 429
|
2575
2630
|
},
|
2576
2631
|
"parameters": [
|
2577
2632
|
{
|
@@ -2597,7 +2652,7 @@
|
|
2597
2652
|
"kind": "class",
|
2598
2653
|
"locationInModule": {
|
2599
2654
|
"filename": "src/certificate/index.ts",
|
2600
|
-
"line":
|
2655
|
+
"line": 422
|
2601
2656
|
},
|
2602
2657
|
"name": "CertificateHttpMemcachedChallengeOutputReference",
|
2603
2658
|
"namespace": "certificate",
|
@@ -2609,7 +2664,7 @@
|
|
2609
2664
|
"immutable": true,
|
2610
2665
|
"locationInModule": {
|
2611
2666
|
"filename": "src/certificate/index.ts",
|
2612
|
-
"line":
|
2667
|
+
"line": 463
|
2613
2668
|
},
|
2614
2669
|
"name": "hostsInput",
|
2615
2670
|
"optional": true,
|
@@ -2628,7 +2683,7 @@
|
|
2628
2683
|
},
|
2629
2684
|
"locationInModule": {
|
2630
2685
|
"filename": "src/certificate/index.ts",
|
2631
|
-
"line":
|
2686
|
+
"line": 456
|
2632
2687
|
},
|
2633
2688
|
"name": "hosts",
|
2634
2689
|
"type": {
|
@@ -2646,7 +2701,7 @@
|
|
2646
2701
|
},
|
2647
2702
|
"locationInModule": {
|
2648
2703
|
"filename": "src/certificate/index.ts",
|
2649
|
-
"line":
|
2704
|
+
"line": 433
|
2650
2705
|
},
|
2651
2706
|
"name": "internalValue",
|
2652
2707
|
"optional": true,
|
@@ -2667,7 +2722,7 @@
|
|
2667
2722
|
"kind": "interface",
|
2668
2723
|
"locationInModule": {
|
2669
2724
|
"filename": "src/certificate/index.ts",
|
2670
|
-
"line":
|
2725
|
+
"line": 467
|
2671
2726
|
},
|
2672
2727
|
"name": "CertificateHttpS3Challenge",
|
2673
2728
|
"namespace": "certificate",
|
@@ -2676,12 +2731,12 @@
|
|
2676
2731
|
"abstract": true,
|
2677
2732
|
"docs": {
|
2678
2733
|
"stability": "stable",
|
2679
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
2734
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs/resources/certificate#s3_bucket Certificate#s3_bucket}."
|
2680
2735
|
},
|
2681
2736
|
"immutable": true,
|
2682
2737
|
"locationInModule": {
|
2683
2738
|
"filename": "src/certificate/index.ts",
|
2684
|
-
"line":
|
2739
|
+
"line": 471
|
2685
2740
|
},
|
2686
2741
|
"name": "s3Bucket",
|
2687
2742
|
"type": {
|
@@ -2704,7 +2759,7 @@
|
|
2704
2759
|
},
|
2705
2760
|
"locationInModule": {
|
2706
2761
|
"filename": "src/certificate/index.ts",
|
2707
|
-
"line":
|
2762
|
+
"line": 510
|
2708
2763
|
},
|
2709
2764
|
"parameters": [
|
2710
2765
|
{
|
@@ -2730,7 +2785,7 @@
|
|
2730
2785
|
"kind": "class",
|
2731
2786
|
"locationInModule": {
|
2732
2787
|
"filename": "src/certificate/index.ts",
|
2733
|
-
"line":
|
2788
|
+
"line": 503
|
2734
2789
|
},
|
2735
2790
|
"name": "CertificateHttpS3ChallengeOutputReference",
|
2736
2791
|
"namespace": "certificate",
|
@@ -2742,7 +2797,7 @@
|
|
2742
2797
|
"immutable": true,
|
2743
2798
|
"locationInModule": {
|
2744
2799
|
"filename": "src/certificate/index.ts",
|
2745
|
-
"line":
|
2800
|
+
"line": 544
|
2746
2801
|
},
|
2747
2802
|
"name": "s3BucketInput",
|
2748
2803
|
"optional": true,
|
@@ -2756,7 +2811,7 @@
|
|
2756
2811
|
},
|
2757
2812
|
"locationInModule": {
|
2758
2813
|
"filename": "src/certificate/index.ts",
|
2759
|
-
"line":
|
2814
|
+
"line": 537
|
2760
2815
|
},
|
2761
2816
|
"name": "s3Bucket",
|
2762
2817
|
"type": {
|
@@ -2769,7 +2824,7 @@
|
|
2769
2824
|
},
|
2770
2825
|
"locationInModule": {
|
2771
2826
|
"filename": "src/certificate/index.ts",
|
2772
|
-
"line":
|
2827
|
+
"line": 514
|
2773
2828
|
},
|
2774
2829
|
"name": "internalValue",
|
2775
2830
|
"optional": true,
|
@@ -2790,7 +2845,7 @@
|
|
2790
2845
|
"kind": "interface",
|
2791
2846
|
"locationInModule": {
|
2792
2847
|
"filename": "src/certificate/index.ts",
|
2793
|
-
"line":
|
2848
|
+
"line": 548
|
2794
2849
|
},
|
2795
2850
|
"name": "CertificateHttpWebrootChallenge",
|
2796
2851
|
"namespace": "certificate",
|
@@ -2799,12 +2854,12 @@
|
|
2799
2854
|
"abstract": true,
|
2800
2855
|
"docs": {
|
2801
2856
|
"stability": "stable",
|
2802
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
2857
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs/resources/certificate#directory Certificate#directory}."
|
2803
2858
|
},
|
2804
2859
|
"immutable": true,
|
2805
2860
|
"locationInModule": {
|
2806
2861
|
"filename": "src/certificate/index.ts",
|
2807
|
-
"line":
|
2862
|
+
"line": 552
|
2808
2863
|
},
|
2809
2864
|
"name": "directory",
|
2810
2865
|
"type": {
|
@@ -2827,7 +2882,7 @@
|
|
2827
2882
|
},
|
2828
2883
|
"locationInModule": {
|
2829
2884
|
"filename": "src/certificate/index.ts",
|
2830
|
-
"line":
|
2885
|
+
"line": 591
|
2831
2886
|
},
|
2832
2887
|
"parameters": [
|
2833
2888
|
{
|
@@ -2853,7 +2908,7 @@
|
|
2853
2908
|
"kind": "class",
|
2854
2909
|
"locationInModule": {
|
2855
2910
|
"filename": "src/certificate/index.ts",
|
2856
|
-
"line":
|
2911
|
+
"line": 584
|
2857
2912
|
},
|
2858
2913
|
"name": "CertificateHttpWebrootChallengeOutputReference",
|
2859
2914
|
"namespace": "certificate",
|
@@ -2865,7 +2920,7 @@
|
|
2865
2920
|
"immutable": true,
|
2866
2921
|
"locationInModule": {
|
2867
2922
|
"filename": "src/certificate/index.ts",
|
2868
|
-
"line":
|
2923
|
+
"line": 625
|
2869
2924
|
},
|
2870
2925
|
"name": "directoryInput",
|
2871
2926
|
"optional": true,
|
@@ -2879,7 +2934,7 @@
|
|
2879
2934
|
},
|
2880
2935
|
"locationInModule": {
|
2881
2936
|
"filename": "src/certificate/index.ts",
|
2882
|
-
"line":
|
2937
|
+
"line": 618
|
2883
2938
|
},
|
2884
2939
|
"name": "directory",
|
2885
2940
|
"type": {
|
@@ -2892,7 +2947,7 @@
|
|
2892
2947
|
},
|
2893
2948
|
"locationInModule": {
|
2894
2949
|
"filename": "src/certificate/index.ts",
|
2895
|
-
"line":
|
2950
|
+
"line": 595
|
2896
2951
|
},
|
2897
2952
|
"name": "internalValue",
|
2898
2953
|
"optional": true,
|
@@ -2913,7 +2968,7 @@
|
|
2913
2968
|
"kind": "interface",
|
2914
2969
|
"locationInModule": {
|
2915
2970
|
"filename": "src/certificate/index.ts",
|
2916
|
-
"line":
|
2971
|
+
"line": 629
|
2917
2972
|
},
|
2918
2973
|
"name": "CertificateTlsChallenge",
|
2919
2974
|
"namespace": "certificate",
|
@@ -2922,12 +2977,12 @@
|
|
2922
2977
|
"abstract": true,
|
2923
2978
|
"docs": {
|
2924
2979
|
"stability": "stable",
|
2925
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
2980
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs/resources/certificate#port Certificate#port}."
|
2926
2981
|
},
|
2927
2982
|
"immutable": true,
|
2928
2983
|
"locationInModule": {
|
2929
2984
|
"filename": "src/certificate/index.ts",
|
2930
|
-
"line":
|
2985
|
+
"line": 633
|
2931
2986
|
},
|
2932
2987
|
"name": "port",
|
2933
2988
|
"optional": true,
|
@@ -2951,7 +3006,7 @@
|
|
2951
3006
|
},
|
2952
3007
|
"locationInModule": {
|
2953
3008
|
"filename": "src/certificate/index.ts",
|
2954
|
-
"line":
|
3009
|
+
"line": 672
|
2955
3010
|
},
|
2956
3011
|
"parameters": [
|
2957
3012
|
{
|
@@ -2977,7 +3032,7 @@
|
|
2977
3032
|
"kind": "class",
|
2978
3033
|
"locationInModule": {
|
2979
3034
|
"filename": "src/certificate/index.ts",
|
2980
|
-
"line":
|
3035
|
+
"line": 665
|
2981
3036
|
},
|
2982
3037
|
"methods": [
|
2983
3038
|
{
|
@@ -2986,7 +3041,7 @@
|
|
2986
3041
|
},
|
2987
3042
|
"locationInModule": {
|
2988
3043
|
"filename": "src/certificate/index.ts",
|
2989
|
-
"line":
|
3044
|
+
"line": 705
|
2990
3045
|
},
|
2991
3046
|
"name": "resetPort"
|
2992
3047
|
}
|
@@ -3001,7 +3056,7 @@
|
|
3001
3056
|
"immutable": true,
|
3002
3057
|
"locationInModule": {
|
3003
3058
|
"filename": "src/certificate/index.ts",
|
3004
|
-
"line":
|
3059
|
+
"line": 709
|
3005
3060
|
},
|
3006
3061
|
"name": "portInput",
|
3007
3062
|
"optional": true,
|
@@ -3015,7 +3070,7 @@
|
|
3015
3070
|
},
|
3016
3071
|
"locationInModule": {
|
3017
3072
|
"filename": "src/certificate/index.ts",
|
3018
|
-
"line":
|
3073
|
+
"line": 699
|
3019
3074
|
},
|
3020
3075
|
"name": "port",
|
3021
3076
|
"type": {
|
@@ -3028,7 +3083,7 @@
|
|
3028
3083
|
},
|
3029
3084
|
"locationInModule": {
|
3030
3085
|
"filename": "src/certificate/index.ts",
|
3031
|
-
"line":
|
3086
|
+
"line": 676
|
3032
3087
|
},
|
3033
3088
|
"name": "internalValue",
|
3034
3089
|
"optional": true,
|
@@ -3044,13 +3099,13 @@
|
|
3044
3099
|
"base": "cdktf.TerraformDataSource",
|
3045
3100
|
"docs": {
|
3046
3101
|
"stability": "stable",
|
3047
|
-
"summary": "Represents a {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
3102
|
+
"summary": "Represents a {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs/data-sources/server_url acme_server_url}."
|
3048
3103
|
},
|
3049
3104
|
"fqn": "@cdktf/provider-acme.dataAcmeServerUrl.DataAcmeServerUrl",
|
3050
3105
|
"initializer": {
|
3051
3106
|
"docs": {
|
3052
3107
|
"stability": "stable",
|
3053
|
-
"summary": "Create a new {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
3108
|
+
"summary": "Create a new {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs/data-sources/server_url acme_server_url} Data Source."
|
3054
3109
|
},
|
3055
3110
|
"locationInModule": {
|
3056
3111
|
"filename": "src/data-acme-server-url/index.ts",
|
@@ -3122,7 +3177,7 @@
|
|
3122
3177
|
},
|
3123
3178
|
{
|
3124
3179
|
"docs": {
|
3125
|
-
"remarks": "Refer to the {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
3180
|
+
"remarks": "Refer to the {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs/data-sources/server_url#import import section} in the documentation of this resource for the id to use",
|
3126
3181
|
"summary": "The id of the existing DataAcmeServerUrl that should be imported."
|
3127
3182
|
},
|
3128
3183
|
"name": "importFromId",
|
@@ -3290,7 +3345,7 @@
|
|
3290
3345
|
"docs": {
|
3291
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.",
|
3292
3347
|
"stability": "stable",
|
3293
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
3348
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs/data-sources/server_url#id DataAcmeServerUrl#id}."
|
3294
3349
|
},
|
3295
3350
|
"immutable": true,
|
3296
3351
|
"locationInModule": {
|
@@ -3311,13 +3366,13 @@
|
|
3311
3366
|
"base": "cdktf.TerraformProvider",
|
3312
3367
|
"docs": {
|
3313
3368
|
"stability": "stable",
|
3314
|
-
"summary": "Represents a {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
3369
|
+
"summary": "Represents a {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs acme}."
|
3315
3370
|
},
|
3316
3371
|
"fqn": "@cdktf/provider-acme.provider.AcmeProvider",
|
3317
3372
|
"initializer": {
|
3318
3373
|
"docs": {
|
3319
3374
|
"stability": "stable",
|
3320
|
-
"summary": "Create a new {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
3375
|
+
"summary": "Create a new {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs acme} Resource."
|
3321
3376
|
},
|
3322
3377
|
"locationInModule": {
|
3323
3378
|
"filename": "src/provider/index.ts",
|
@@ -3388,7 +3443,7 @@
|
|
3388
3443
|
},
|
3389
3444
|
{
|
3390
3445
|
"docs": {
|
3391
|
-
"remarks": "Refer to the {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
3446
|
+
"remarks": "Refer to the {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs#import import section} in the documentation of this resource for the id to use",
|
3392
3447
|
"summary": "The id of the existing AcmeProvider that should be imported."
|
3393
3448
|
},
|
3394
3449
|
"name": "importFromId",
|
@@ -3569,7 +3624,7 @@
|
|
3569
3624
|
"abstract": true,
|
3570
3625
|
"docs": {
|
3571
3626
|
"stability": "stable",
|
3572
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
3627
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs#server_url AcmeProvider#server_url}."
|
3573
3628
|
},
|
3574
3629
|
"immutable": true,
|
3575
3630
|
"locationInModule": {
|
@@ -3584,7 +3639,7 @@
|
|
3584
3639
|
{
|
3585
3640
|
"abstract": true,
|
3586
3641
|
"docs": {
|
3587
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
3642
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs#alias AcmeProvider#alias}",
|
3588
3643
|
"stability": "stable",
|
3589
3644
|
"summary": "Alias name."
|
3590
3645
|
},
|
@@ -3607,13 +3662,13 @@
|
|
3607
3662
|
"base": "cdktf.TerraformResource",
|
3608
3663
|
"docs": {
|
3609
3664
|
"stability": "stable",
|
3610
|
-
"summary": "Represents a {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
3665
|
+
"summary": "Represents a {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs/resources/registration acme_registration}."
|
3611
3666
|
},
|
3612
3667
|
"fqn": "@cdktf/provider-acme.registration.Registration",
|
3613
3668
|
"initializer": {
|
3614
3669
|
"docs": {
|
3615
3670
|
"stability": "stable",
|
3616
|
-
"summary": "Create a new {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
3671
|
+
"summary": "Create a new {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs/resources/registration acme_registration} Resource."
|
3617
3672
|
},
|
3618
3673
|
"locationInModule": {
|
3619
3674
|
"filename": "src/registration/index.ts",
|
@@ -3684,7 +3739,7 @@
|
|
3684
3739
|
},
|
3685
3740
|
{
|
3686
3741
|
"docs": {
|
3687
|
-
"remarks": "Refer to the {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
3742
|
+
"remarks": "Refer to the {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs/resources/registration#import import section} in the documentation of this resource for the id to use",
|
3688
3743
|
"summary": "The id of the existing Registration that should be imported."
|
3689
3744
|
},
|
3690
3745
|
"name": "importFromId",
|
@@ -4088,7 +4143,7 @@
|
|
4088
4143
|
"abstract": true,
|
4089
4144
|
"docs": {
|
4090
4145
|
"stability": "stable",
|
4091
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
4146
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs/resources/registration#email_address Registration#email_address}."
|
4092
4147
|
},
|
4093
4148
|
"immutable": true,
|
4094
4149
|
"locationInModule": {
|
@@ -4104,7 +4159,7 @@
|
|
4104
4159
|
"abstract": true,
|
4105
4160
|
"docs": {
|
4106
4161
|
"stability": "stable",
|
4107
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
4162
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs/resources/registration#account_key_algorithm Registration#account_key_algorithm}."
|
4108
4163
|
},
|
4109
4164
|
"immutable": true,
|
4110
4165
|
"locationInModule": {
|
@@ -4121,7 +4176,7 @@
|
|
4121
4176
|
"abstract": true,
|
4122
4177
|
"docs": {
|
4123
4178
|
"stability": "stable",
|
4124
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
4179
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs/resources/registration#account_key_ecdsa_curve Registration#account_key_ecdsa_curve}."
|
4125
4180
|
},
|
4126
4181
|
"immutable": true,
|
4127
4182
|
"locationInModule": {
|
@@ -4138,7 +4193,7 @@
|
|
4138
4193
|
"abstract": true,
|
4139
4194
|
"docs": {
|
4140
4195
|
"stability": "stable",
|
4141
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
4196
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs/resources/registration#account_key_pem Registration#account_key_pem}."
|
4142
4197
|
},
|
4143
4198
|
"immutable": true,
|
4144
4199
|
"locationInModule": {
|
@@ -4155,7 +4210,7 @@
|
|
4155
4210
|
"abstract": true,
|
4156
4211
|
"docs": {
|
4157
4212
|
"stability": "stable",
|
4158
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
4213
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs/resources/registration#account_key_rsa_bits Registration#account_key_rsa_bits}."
|
4159
4214
|
},
|
4160
4215
|
"immutable": true,
|
4161
4216
|
"locationInModule": {
|
@@ -4171,7 +4226,7 @@
|
|
4171
4226
|
{
|
4172
4227
|
"abstract": true,
|
4173
4228
|
"docs": {
|
4174
|
-
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
4229
|
+
"remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs/resources/registration#external_account_binding Registration#external_account_binding}",
|
4175
4230
|
"stability": "stable",
|
4176
4231
|
"summary": "external_account_binding block."
|
4177
4232
|
},
|
@@ -4191,7 +4246,7 @@
|
|
4191
4246
|
"docs": {
|
4192
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.",
|
4193
4248
|
"stability": "stable",
|
4194
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
4249
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs/resources/registration#id Registration#id}."
|
4195
4250
|
},
|
4196
4251
|
"immutable": true,
|
4197
4252
|
"locationInModule": {
|
@@ -4226,7 +4281,7 @@
|
|
4226
4281
|
"abstract": true,
|
4227
4282
|
"docs": {
|
4228
4283
|
"stability": "stable",
|
4229
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
4284
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs/resources/registration#hmac_base64 Registration#hmac_base64}."
|
4230
4285
|
},
|
4231
4286
|
"immutable": true,
|
4232
4287
|
"locationInModule": {
|
@@ -4242,7 +4297,7 @@
|
|
4242
4297
|
"abstract": true,
|
4243
4298
|
"docs": {
|
4244
4299
|
"stability": "stable",
|
4245
|
-
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.
|
4300
|
+
"summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.32.0/docs/resources/registration#key_id Registration#key_id}."
|
4246
4301
|
},
|
4247
4302
|
"immutable": true,
|
4248
4303
|
"locationInModule": {
|
@@ -4375,6 +4430,6 @@
|
|
4375
4430
|
"symbolId": "src/registration/index:RegistrationExternalAccountBindingOutputReference"
|
4376
4431
|
}
|
4377
4432
|
},
|
4378
|
-
"version": "11.
|
4379
|
-
"fingerprint": "
|
4433
|
+
"version": "11.13.0",
|
4434
|
+
"fingerprint": "6yCeg0ohU8svw3PE0lbM+lHSnmWl7KIMydFlC5DKVmQ="
|
4380
4435
|
}
|