blob: d4f5d8b5371917901d2730c6bd39dd47dc9aa0d5 (
plain) (
blame)
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
|
; inherits: hcl
; Terraform specific references
;
;
; local/module/data/var/output
(expression
(variable_expr
(identifier) @variable.builtin
(#any-of? @variable.builtin "data" "var" "local" "module" "output"))
(get_attr
(identifier) @variable.member))
; path.root/cwd/module
(expression
(variable_expr
(identifier) @type.builtin
(#eq? @type.builtin "path"))
(get_attr
(identifier) @variable.builtin
(#any-of? @variable.builtin "root" "cwd" "module")))
; terraform.workspace
(expression
(variable_expr
(identifier) @type.builtin
(#eq? @type.builtin "terraform"))
(get_attr
(identifier) @variable.builtin
(#eq? @variable.builtin "workspace")))
; Terraform specific keywords
; FIXME: ideally only for identifiers under a `variable` block to minimize false positives
((identifier) @type.builtin
(#any-of? @type.builtin "bool" "string" "number" "object" "tuple" "list" "map" "set" "any"))
(object_elem
val: (expression
(variable_expr
(identifier) @type.builtin
(#any-of? @type.builtin "bool" "string" "number" "object" "tuple" "list" "map" "set" "any"))))
|