diff --git a/examples/example.tf b/examples/example.tf new file mode 100644 index 0000000..4555559 --- /dev/null +++ b/examples/example.tf @@ -0,0 +1,36 @@ +terraform { + required_providers { + aws = { + source = "hashicorp/aws" + version = "~> 3.27" + } + } + + required_version = ">= 0.14.9" +} + +provider "aws" { + profile = "default" + region = "us-west-2" +} + +resource "aws_instance" "app_server" { + ami = "ami-830c94e3" + instance_type = "t2.micro" + + tags = { + Name = "ExampleAppServerInstance" + } +} + +resource "aws_api_gateway_integration_response" "proxy_other" { + depends_on = ["aws_api_gateway_integration.proxy_other"] + rest_api_id = "${aws_api_gateway_rest_api.this.id}" + resource_id = "${aws_api_gateway_resource.proxy_other.id}" + http_method = "${aws_api_gateway_method.proxy_other.http_method}" + status_code = "${aws_api_gateway_method_response.proxy_other.status_code}" + + response_templates = { + "application/json" = "" + } +} diff --git a/themes/LaserWave-color-theme.json b/themes/LaserWave-color-theme.json index 58cbeaa..e127822 100644 --- a/themes/LaserWave-color-theme.json +++ b/themes/LaserWave-color-theme.json @@ -319,6 +319,7 @@ { "name": "attributes", "scope": [ + "variable.other.enummember", "entity.other.attribute-name", "entity.other.attribute-name.jsx", "entity.other.attribute-name.html", @@ -378,6 +379,7 @@ { "name": "variables", "scope": [ + "variable.other", "variable.scss", "meta.function-call.c", "variable.parameter.ts", @@ -415,6 +417,7 @@ { "name": "Types", "scope": [ + "entity.name.type", "storage.type", "keyword.var.go", "keyword.type.go", diff --git a/themes/LaserWave-high-contrast-color-theme.json b/themes/LaserWave-high-contrast-color-theme.json index f8f6b04..91b6a3a 100644 --- a/themes/LaserWave-high-contrast-color-theme.json +++ b/themes/LaserWave-high-contrast-color-theme.json @@ -378,6 +378,7 @@ { "name": "variables", "scope": [ + "variable.other", "variable.scss", "meta.function-call.c", "variable.parameter.ts", @@ -415,6 +416,7 @@ { "name": "Types", "scope": [ + "entity.name.type", "storage.type", "keyword.var.go", "keyword.type.go",