hcl/test-fixtures/tfvars.hcl
James Nugent c190e41403 Fix scanning of identifiers of the form 'map.key'
This is used in `.tfvars` files for Terraform in order to allow
overriding values in maps, for example:

    map.key1 = "Value"
    map.key2 = "OtherValue"
2015-11-24 15:13:07 +02:00

4 lines
71 B
HCL

regularvar = "Should work"
map.key1 = "Value"
map.key2 = "Other value"