forked from withfig/autocomplete
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ansible.ts
250 lines (250 loc) · 5.84 KB
/
ansible.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
const completionSpec: Fig.Spec = {
name: "ansible",
description:
"Define and run a single Ansible task 'playbook' against a set of hosts",
args: {
name: "pattern",
description: "Host pattern",
},
options: [
{
name: "--ask-vault-pass",
description: "Ask for vault password",
},
{
name: "--list-hosts",
description: "Outputs a list of matching hosts; does not execute",
},
{
name: "--playbook-dir",
description:
"Since this tool does not use playbooks, use this as a substitute playbook directory.This sets the relative path for many features including roles/ group_vars/etc",
args: {
name: "playbook dir",
template: ["folders"],
},
},
{
name: "--syntax-check",
description:
"Perform a syntax check on the playbook, but do not execute it",
},
{
name: "--vault-id",
description: "Specify the vault identity to use",
args: {
name: "vault ID",
},
},
{
name: "--vault-password-file",
description: "Specify a vault password file",
args: {
name: "vault password file",
template: ["filepaths"],
},
},
{
name: "--version",
description:
"Show program's version number, config file location, configured module search path, module location and executable location",
},
{
name: ["--background", "-B"],
description: "Run asynchronously, failing after specified seconds",
args: {
name: "seconds",
},
},
{
name: ["--check", "-C"],
description:
"Don't make any changes; instead, try to predict some of the changes that may occur",
},
{
name: ["--diff", "-D"],
description:
"When changing (small) files and templates, show the differences in those files",
},
{
name: ["--module-path", "-M"],
description: "Prepend colon-separated path(s) to module library",
args: {
name: "module path",
template: ["folders"],
},
},
{
name: ["--poll", "-P"],
description: "Set the poll interval if using -B",
args: {
name: "poll interval",
},
},
{
name: ["--args", "-a"],
description: "Specify module arguments",
args: {
name: "module arguments",
},
},
{
name: ["--extra-vars", "-e"],
description:
"Set additional variables as key=value or YAML/JSON, if filename prepend with @",
args: {
name: "extra vars",
},
},
{
name: ["--forks", "-f"],
description: "Specify number of parallel processes to use",
args: {
name: "forks",
},
},
{
name: ["--help", "-h"],
description: "Show help for ansible",
},
{
name: ["--inventory", "-i"],
description: "Specify inventory host path or comma separated host list",
args: {
name: "inventory",
},
},
{
name: ["--limit", "-l"],
description: "Limit selected hosts to an additional pattern",
args: {
name: "subset",
},
},
{
name: ["--module-name", "-m"],
description: "Specify the module name to execute",
args: {
name: "module name",
},
},
{
name: ["--one-line", "-o"],
description: "Condense output",
},
{
name: ["--tree", "-t"],
description: "Log output to specific directory",
args: {
name: "tree",
},
},
{
name: ["--verbose", "-v"],
description: "Enable verbose mode",
},
{
name: "-vvv",
description: "Enable very verbose mode",
},
{
name: "-vvvv",
description: "Enable connection debug mode",
},
{
name: "--become-method",
description: "Privilege escalation method to use",
args: {
name: "become method",
suggestions: [
"sudo",
"su",
"pbrun",
"pfexec",
"doas",
"dzdo",
"ksu",
"runas",
"machinectl",
],
},
},
{
name: "--become-user",
description: "Privilege escalation user to use",
args: {
name: "become user",
},
},
{
name: ["--ask-become-pass", "-K"],
description: "Prompt for privilege escalation password",
},
{
name: ["--become", "-b"],
description: "Run operations with become",
},
{
name: ["--private-key", "--key-file"],
description: "Use this fole to authenticate the connection",
args: {
name: "private key",
template: ["filepaths"],
},
},
{
name: "--scp-extra-args",
description: "Extra arguments to pass to (only) scp",
args: {
name: "SCP extra args",
},
},
{
name: "--sftp-extra-args",
description: "Extra arguments to pass to (only) sftp",
args: {
name: "SFTP extra args",
},
},
{
name: "-ssh-extra-args",
description: "Extra arguments to pass to (only) ssh",
args: {
name: "SSH extra args",
},
},
{
name: "--ssh-common-args",
description: "Extra arguments to pass to sftp/scp/ssh",
args: {
name: "SSH common args",
},
},
{
name: ["--timeout", "-T"],
description: "Override the connection timeout in seconds",
args: {
name: "timeout",
},
},
{
name: ["--connection", "-c"],
description: "Connection type to use",
args: {
name: "connection type",
},
},
{
name: ["--ask-pass", "-k"],
description: "Ask for connection password",
},
{
name: ["--user", "-u"],
description: "Connect as this user",
args: {
name: "user",
},
},
],
};
export default completionSpec;