summaryrefslogtreecommitdiff
path: root/tests/snippets/terraform/test_variable_read.txt
blob: 25afcf4d79384e1a6528256e7c473af1a7d0ad74 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
---input---
provider "aws" {
  region = var.aws_region
}

---tokens---
'provider'    Keyword.Reserved
' '           Text.Whitespace
'"aws"'       Name.Variable
' '           Text.Whitespace
'{'           Punctuation
'\n'          Text.Whitespace

'  '          Text.Whitespace
'region'      Name.Attribute
' '           Text.Whitespace
'='           Operator
' '           Text.Whitespace
'var.aws_region' Name.Variable
'\n'          Text.Whitespace

'}'           Punctuation
'\n'          Text.Whitespace