mirror of
https://github.com/ralsina/tartrazine.git
synced 2024-11-12 22:42:23 +00:00
24 lines
507 B
Plaintext
24 lines
507 B
Plaintext
|
---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
|