-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
/
Copy pathcloudflared.ts
2393 lines (2382 loc) · 82.2 KB
/
cloudflared.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import { filepaths } from "@fig/autocomplete-generators";
const tcp_rdp_ssh_smb_options: Fig.Option[] = [
{
name: ["--hostname", "--tunnel-host", "-T"],
description: "Specify the hostname of your application",
args: {
name: "value",
description: "Hostname",
},
isRequired: true,
},
{
name: "--destination",
description: "Specify the destination address of your SSH server",
args: {
name: "value",
description: "Address of SSH server",
},
isRequired: true,
},
{
name: ["--url", "--listener", "-L"],
description: "Specify the host:port to forward data to Cloudflare edge",
args: {
name: "value",
description: "Host:port to forward data to Cloudflare edge",
},
isRequired: true,
},
{
name: ["--service-token-id", "--id"],
description:
"Specify an Access service token ID you wish to use. [$TUNNEL_SERVICE_TOKEN_ID]",
args: {
name: "value",
description: "Access service token ID",
},
isRequired: true,
},
{
name: ["--service-token-secret", "--secret"],
description:
"Specify an Access service token secret you wish to use. [$TUNNEL_SERVICE_TOKEN_SECRET]",
args: {
name: "value",
description: "Access service token secret",
},
isRequired: true,
},
{
name: ["--log-directory", "--logfile"],
description: "Save application log to this directory for reporting issues",
args: {
name: "value",
description: "Directory",
template: ["folders"],
},
isRequired: true,
},
{
name: ["--log-level", "--loglevel"],
description: "Application logging level {debug, info, warn, error, fatal}",
args: {
name: "value",
description: "Directory",
suggestions: [
{
name: "debug",
},
{
name: "info",
},
{
name: "warn",
},
{
name: "error",
},
{
name: "fatal",
},
],
},
isRequired: true,
},
];
const update: Fig.Subcommand = {
name: "update",
description: "Update the agent if a new version exists",
options: [
{
name: "--beta",
description:
"Specify if you wish to update to the latest beta version (default: false)",
},
{
name: "--version",
description: "Specify a version you wish to upgrade or downgrade to",
args: {
name: "value",
},
},
],
args: {
name: "arguments",
isVariadic: true,
isOptional: true,
},
};
const version: Fig.Subcommand = {
name: "version",
description: "Print the version",
args: {
name: "arguments",
isVariadic: true,
isOptional: true,
},
};
const proxyDns: Fig.Subcommand = {
name: "proxy-dns",
description: "Run a DNS over HTTPS proxy server",
options: [
{
name: "--metrics",
description:
'Listen address for metrics reporting. (default: "localhost:") [$TUNNEL_METRICS]',
args: {
name: "value",
},
},
{
name: "--address",
description:
'Listen address for the DNS over HTTPS proxy server. (default: "localhost") [$TUNNEL_DNS_ADDRESS]',
args: {
name: "value",
default: "localhost",
},
},
{
name: "--port",
description:
"Listen on given port for the DNS over HTTPS proxy server. (default: 53) [$TUNNEL_DNS_PORT]",
args: {
name: "value",
default: "53",
},
},
{
name: "--upstream",
description:
'Upstream endpoint URL, you can specify multiple endpoints for redundancy. (default: "https://1.1.1.1/dns-query", "https://1.0.0.1/dns-query") (accepts multiple inputs) [$TUNNEL_DNS_UPSTREAM]',
args: {
name: "value",
isVariadic: true,
},
},
{
name: "--bootstrap",
description:
'Bootstrap endpoint URL, you can specify multiple endpoints for redundancy. (default: "https://162.159.36.1/dns-query", "https://162.159.46.1/dns-query", "https://[2606:4700:4700::1111]/dns-query", "https://[2606:4700:4700::1001]/dns-query") (accepts multiple inputs) [$TUNNEL_DNS_BOOTSTRAP]',
args: {
name: "value",
isVariadic: true,
},
},
{
name: "--max-upstream-conns",
description:
"Maximum concurrent connections to upstream. Setting to 0 means unlimited. (default: 5) [$TUNNEL_DNS_MAX_UPSTREAM_CONNS]",
args: {
name: "value",
isVariadic: true,
},
},
],
args: {
name: "command options",
isOptional: true,
},
};
const service: Fig.Subcommand = {
name: "service",
description: "Manages the cloudflared launch agent",
subcommands: [
{
name: "install",
description: "Install cloudflared as an user launch agent",
},
{
name: "uninstall",
description: "Uninstall the cloudflared launch agent",
},
{
name: ["help", "h"],
description: "Shows a list of commands or help for one command",
},
],
args: [
{
name: "command options",
isOptional: true,
},
{
name: "arguments",
isVariadic: true,
isOptional: true,
},
],
};
const help: Fig.Subcommand = {
name: "help",
description: "Shows a list of commands or help for one command",
};
const access: Fig.Subcommand = {
name: "access",
description:
"Cloudflare Access protects internal resources by securing, authenticating and monitoring access per-user and by application. With Cloudflare Access, only authenticated users with the required permissions are able to reach sensitive resources. The commands provided here allow you to interact with Access protected applications from the command line",
subcommands: [
{
name: "login",
description:
"The login subcommand initiates an authentication flow with your identity provider. The subcommand will launch a browser. For headless systems, a url is provided. Once authenticated with your identity provider, the login command will generate a JSON Web Token (JWT) scoped to your identity, the application you intend to reach, and valid for a session duration set by your administrator. cloudflared stores the token in local storage",
displayName: "login <url of access application>",
args: {
name: "url",
},
},
{
name: "curl",
description: "Uninstall the cloudflared launch agent",
options: [
{
name: ["--allow-request", "--ar"],
},
],
args: [
{
name: "url",
},
{ name: "curl args", isVariadic: true },
],
},
{
name: "token",
description:
"The token subcommand produces a JWT which can be used to authenticate requests",
displayName: "token -app=<url of access application>",
options: [
{
name: "--app",
requiresSeparator: true,
args: {
name: "value",
description: "Url of access application",
},
isRequired: true,
},
],
},
{
name: "tcp",
description:
"The tcp subcommand sends data over a proxy to the Cloudflare edge",
options: tcp_rdp_ssh_smb_options,
},
{
name: "rdp",
description:
"The rdp subcommand sends data over a proxy to the Cloudflare edge",
options: tcp_rdp_ssh_smb_options,
},
{
name: "ssh",
description:
"The ssh subcommand sends data over a proxy to the Cloudflare edge",
options: tcp_rdp_ssh_smb_options,
},
{
name: "smb",
description:
"The smb subcommand sends data over a proxy to the Cloudflare edge",
options: tcp_rdp_ssh_smb_options,
},
{
name: "ssh-config",
description: "Prints an example configuration ~/.ssh/config",
options: [
{
name: "--hostname",
description: "Specify the hostname of your application",
args: {
name: "value",
description: "Hostname",
},
isRequired: true,
},
{
name: "--short-lived-cert",
description:
"Specify if you wish to generate short lived certs. (default: false)",
},
],
args: [
{
name: "command options",
isOptional: true,
},
{
name: "arguments",
isVariadic: true,
isOptional: true,
},
],
},
{
name: "ssh-gen",
description: "Generates a short lived certificate for given hostname",
options: [
{
name: "--hostname",
description: "Specify the hostname of your application",
args: {
name: "value",
description: "Hostname",
},
isRequired: true,
},
],
args: [
{
name: "command options",
isOptional: true,
},
{
name: "arguments",
isVariadic: true,
isOptional: true,
},
],
},
{
name: ["help", "h"],
description: "Shows a list of commands or help for one command",
},
],
args: [
{
name: "command options",
isOptional: true,
},
{
name: "arguments",
isVariadic: true,
isOptional: true,
},
],
};
const tunnel: Fig.Subcommand = {
name: "tunnel",
description:
"Use Cloudflare Tunnel to expose private services to the Internet or to Cloudflare connected private users",
subcommands: [
{
name: "login",
description: "Generate a configuration file with your login details",
},
{
name: "create",
description:
'Creates a tunnel, registers it with Cloudflare edge and generates credential file used to run this tunnel. Use "cloudflared tunnel route" subcommand to map a DNS name to this tunnel and "cloudflared tunnel run" to start the connection',
additionalSuggestions: [
"cloudflared tunnel [tunnel command options] create [subcommand options] NAME",
],
options: [
{
name: "--config",
description:
'Specifies a config file in YAML format. (default: "/usr/local/etc/cloudflared/config.yml")',
args: {
name: "value",
description: "Config file",
generators: filepaths({ extensions: ["yml", "yaml"] }),
},
isRequired: true,
},
{
name: "--origincert",
description:
"Path to the certificate generated for your origin when you run cloudflared login. [$TUNNEL_ORIGIN_CERT]",
args: {
name: "value",
description: "Certificate generated",
},
isRequired: true,
},
{
name: "--autoupdate-freq",
description:
"Autoupdate frequency. Default is 24h0m0s. (default: 24h0m0s)",
args: {
name: "value",
description: "Frequency",
},
isRequired: true,
},
{
name: "--no-autoupdate",
description:
"Disable periodic check for updates, restarting the server with the new version. (default: false) [$NO_AUTOUPDATE]",
},
{
name: "--metrics",
description:
'Listen address for metrics reporting. (default: "localhost:") [$TUNNEL_METRICS]',
args: {
name: "value",
description: "Adress",
},
isRequired: true,
},
{
name: "--pidfile",
description:
"Write the application's PID to this file after first successful connection. [$TUNNEL_PIDFILE]",
args: {
name: "value",
description: "Application PID",
},
isRequired: true,
},
{
name: "--loglevel",
description:
'Application logging level {debug, info, warn, error, fatal}. At debug level cloudflared will log request URL, method, protocol, content length, as well as, all request and response headers. This can expose sensitive information in your logs. (default: "info") [$TUNNEL_LOGLEVEL]',
args: {
name: "value",
description: "Logging level",
suggestions: [
{
name: "debug",
},
{
name: "info",
},
{
name: "warn",
},
{
name: "error",
},
{
name: "fatal",
},
],
},
isRequired: true,
},
{
name: ["--transport-loglevel", "--proto-loglevel"],
description:
'Transport logging level(previously called protocol logging level) {debug, info, warn, error, fatal} (default: "info") [$TUNNEL_PROTO_LOGLEVEL, $TUNNEL_TRANSPORT_LOGLEVEL]',
args: {
name: "value",
description: "Logging level",
suggestions: [
{
name: "debug",
},
{
name: "info",
},
{
name: "warn",
},
{
name: "error",
},
{
name: "fatal",
},
],
},
isRequired: true,
},
{
name: "--logfile",
description:
"Save application log to this file for reporting issues. [$TUNNEL_LOGFILE]",
args: {
name: "value",
description: "File",
template: ["filepaths"],
},
isRequired: true,
},
{
name: "--log-directory",
description:
"Save application log to this directory for reporting issues. [$TUNNEL_LOGDIRECTORY]",
args: {
name: "value",
description: "Directory",
template: ["folders"],
},
isRequired: true,
},
{
name: "--trace-output",
description:
"Name of trace output file, generated when cloudflared stops. [$TUNNEL_TRACE_OUTPUT]",
args: {
name: "value",
description: "Output file",
},
isRequired: true,
},
{
name: ["--output", "-o"],
description:
"Render output using given FORMAT. Valid options are 'json' or 'yaml'",
args: {
name: "format",
description: "Format",
suggestions: ["json", "yaml"],
},
},
{
name: ["--credentials-file", "--cred-file"],
description:
"Filepath at which to read/write the tunnel credentials [$TUNNEL_CRED_FILE]",
args: {
name: "value",
description: "Filepath",
template: ["filepaths", "folders"],
},
},
{
name: ["--secret", "-s"],
description:
"Base64 encoded secret to set for the tunnel. The decoded secret must be at least 32 bytes long. If not specified, a random 32-byte secret will be generated. [$TUNNEL_CREATE_SECRET]",
args: {
name: "value",
description: "Base 64 encoded secret",
},
},
],
args: {
name: "name",
},
},
{
name: "route",
description:
"The route command defines how Cloudflare will proxy requests to this tunnel",
subcommands: [
{
name: "dns",
description:
"Creates a DNS CNAME record hostname that points to the tunnel",
options: [
{
name: ["--overwrite-dns", "-f"],
description:
"Overwrites existing DNS records with this hostname (default: false) [$TUNNEL_FORCE_PROVISIONING_DNS]",
},
],
args: [
{
name: "tunnel",
description: "Tunnel",
},
{
name: "hostname",
description: "Hostname",
},
],
},
{
name: "lb",
description:
"Creates Load Balancer with an origin pool that points to the tunnel",
args: [
{
name: "tunnel",
description: "Tunnel",
},
{
name: "hostname",
description: "Hostname",
},
{
name: "LB-POOL",
description: "Load balancer pool",
},
],
},
{
name: "ip",
description:
"Configure and query Cloudflare WARP routing to private IP networks made available through Cloudflare Tunnels",
subcommands: [
{
name: "add",
description:
"Add a new network to the routing table reachable via a Tunnel",
options: [
{
name: ["--vnet", "--vn"],
description:
"The ID or name of the virtual network to which the route is associated to",
args: {
name: "value",
description: "Id or name",
},
},
],
args: [
{
name: "command options",
isOptional: true,
},
{
name: "arguments",
isVariadic: true,
isOptional: true,
},
],
},
{
name: ["show", "list"],
description:
"Shows your organization private routing table. You can use flags to filter the results",
options: [
{
name: "--filter-is-deleted",
description:
"If false (default), only show non-deleted routes. If true, only show deleted routes. (default: false)",
args: {
name: "value",
description: "Id or name",
},
},
{
name: "--filter-tunnel-id",
description: "Show only routes with the given tunnel ID",
args: {
name: "value",
description: "Id",
},
},
{
name: ["--filter-network-is-subset-of", "--nsub"],
description:
"Show only routes whose network is a subset of the given network",
args: {
name: "value",
description: "Network",
},
},
{
name: ["--filter-network-is-superset-of", "--nsup"],
description:
"Show only routes whose network is a superset of the given network",
args: {
name: "value",
description: "Network",
},
},
{
name: "--filter-comment-is",
description: "Show only routes with this comment",
args: {
name: "value",
description: "Comment",
},
},
{
name: "--filter-vnet-id",
description:
"Show only routes that are attached to the given virtual network ID",
args: {
name: "value",
description: "Vnet id",
},
},
{
name: ["--output", "-o"],
description:
"Render output using given FORMAT. Valid options are 'json' or 'yaml'",
args: {
name: "format",
description: "Format",
suggestions: ["json", "yaml"],
},
},
],
args: {
name: "flags",
isOptional: true,
isVariadic: true,
},
},
{
name: "delete",
description:
"Delete a row from your organization's private routing table",
options: [
{
name: ["--vnet", "--vn"],
description:
"The ID or name of the virtual network to which the route is associated to",
args: {
name: "value",
description: "Id or name",
},
},
],
args: [
{
name: "flags",
isOptional: true,
isVariadic: true,
},
{
name: "CIDR",
},
],
},
{
name: "get",
description:
"Check which row of the routing table matches a given IP",
options: [
{
name: ["--vnet", "--vn"],
description:
"The ID or name of the virtual network to which the route is associated to",
args: {
name: "value",
description: "Id or name",
},
},
],
args: [
{
name: "flags",
isOptional: true,
isVariadic: true,
},
{
name: "IP",
},
],
},
],
},
],
args: [
{
name: "command options",
isOptional: true,
},
{
name: "arguments",
isVariadic: true,
isOptional: true,
},
],
},
{
name: "vnet",
description:
"Configure and query virtual networks to manage private IP routes with overlapping IPs",
subcommands: [
{
name: "add",
description:
"Add a new virtual network to which IP routes can be attached",
options: [
{
name: ["--default", "-d"],
description:
"The virtual network becomes the default one for the account. This means that all operations that omit a virtual network will now implicitly be using this virtual network (i.e., the default one) such as new IP routes that are created. When this flag is not set, the virtual network will not become the default one in the account. (default: false)",
},
],
},
{
name: "list",
description:
"Lists the virtual networks based on the given filter flags",
options: [
{
name: "--id",
description: "List virtual networks with the given ID",
args: {
name: "ID",
description: "Id",
},
},
{
name: "--name",
description: "List virtual networks with the given NAME",
args: {
name: "NAME",
description: "Name",
},
},
{
name: "--is-default",
description:
"If true, lists the virtual network that is the default one. If false, lists all non-default virtual networks for the account. If absent, all are included in the results regardless of their default status. (default: false)",
},
{
name: "--show-deleted",
description:
"If false (default), only show non-deleted virtual networks. If true, only show deleted virtual networks. (default: false)",
},
{
name: ["--output", "-o"],
description:
"Render output using given FORMAT. Valid options are 'json' or 'yaml'",
args: {
name: "format",
description: "Format",
suggestions: ["json", "yaml"],
},
},
],
},
{ name: "delete", description: "Delete a virtual network" },
{
name: "update",
description: "Update a virtual network",
options: [
{
name: ["--name", "-n"],
description: "The new name for the virtual network",
args: {
name: "value",
description: "Name",
},
},
{
name: ["--comment", "-c"],
description:
"A new comment describing the purpose of the virtual network",
args: {
name: "value",
description: "Comment",
},
},
{
name: ["--default", "-d"],
description:
"The virtual network becomes the default one for the account. This means that all operations that omit a virtual network will now implicitly be using this virtual network (i.e., the default one) such as new IP routes that are created. When this flag is not set, the virtual network will not become the default one in the account. (default: false)",
},
],
},
],
args: [
{
name: "command options",
isOptional: true,
},
{
name: "arguments",
isVariadic: true,
isOptional: true,
},
],
},
{
name: "run",
description: "Proxy a local web server by running the given tunnel",
options: [
{
name: "--config",
description:
'Specifies a config file in YAML format. (default: "/usr/local/etc/cloudflared/config.yml")',
args: {
name: "value",
description: "Config file in YAML",
generators: filepaths({ extensions: ["yml", "yaml"] }),
},
},
{
name: "--origincert",
description:
"Path to the certificate generated for your origin when you run cloudflared login. [$TUNNEL_ORIGIN_CERT]",
args: {
name: "value",
description: "Path to the certificate",
template: ["filepaths"],
},
},
{
name: "--autoupdate-freq",
description:
"Autoupdate frequency. Default is 24h0m0s. (default: 24h0m0s)",
args: {
name: "value",
description: "Autoupdate frequency",
},
},
{
name: "--no-autoupdate",
description:
"Disable periodic check for updates, restarting the server with the new version. (default: false) [$NO_AUTOUPDATE]",
},
{
name: "--metrics",
description:
'Listen address for metrics reporting. (default: "localhost:") [$TUNNEL_METRICS]',
args: {
name: "value",
description: "Listen address",
},
},
{
name: "--pidfile",
description:
"Write the application's PID to this file after first successful connection. [$TUNNEL_PIDFILE]",
args: {
name: "value",
description: "Application's PID",
},
},
{
name: "--loglevel",
description:
'Application logging level {debug, info, warn, error, fatal}. At debug level cloudflared will log request URL, method, protocol, content length, as well as, all request and response headers. This can expose sensitive information in your logs. (default: "info") [$TUNNEL_LOGLEVEL]',
args: {
name: "value",
description: "Logging level",
suggestions: [
{
name: "debug",
},
{
name: "info",
},
{
name: "warn",
},
{
name: "error",
},
{
name: "fatal",
},
],
},
},
{
name: ["--transport-loglevel", "--proto-loglevel"],
description:
'Transport logging level(previously called protocol logging level) {debug, info, warn, error, fatal} (default: "info") [$TUNNEL_PROTO_LOGLEVEL, $TUNNEL_TRANSPORT_LOGLEVEL]',
args: {
name: "value",
description: "Logging level",
suggestions: [
{
name: "debug",
},
{
name: "info",
},
{
name: "warn",
},
{
name: "error",
},
{
name: "fatal",
},
],
},
},
{
name: "--logfile",
description:
"Save application log to this file for reporting issues. [$TUNNEL_LOGFILE]",
args: {
name: "value",
description: "File",
template: "filepaths",
},
},