Skip to content

Commit 93375a3

Browse files
Adding ephemeral resource type (#70)
* adding ephemeral resource * Update Terraform.sublime-syntax * Update Terraform.sublime-syntax Co-authored-by: Michael <2701605+michaelblyons@users.noreply.github.com> --------- Co-authored-by: Michael <2701605+michaelblyons@users.noreply.github.com>
1 parent dab171f commit 93375a3

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

Terraform.sublime-syntax

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -65,15 +65,16 @@ variables:
6565

6666
# Block types that are known to Terraform.
6767
#
68-
# resource: https://www.terraform.io/docs/language/resources/syntax.html
69-
# provider: https://www.terraform.io/docs/language/providers/configuration.html
70-
# variable: https://www.terraform.io/docs/language/values/variables.html
71-
# output: https://www.terraform.io/docs/language/values/outputs.html
72-
# locals: https://www.terraform.io/docs/language/values/locals.html
73-
# module: https://www.terraform.io/docs/language/modules/syntax.html
74-
# data: https://www.terraform.io/docs/language/data-sources/index.html
75-
# terraform: https://www.terraform.io/docs/language/settings/index.html#terraform-block-syntax
76-
terraform_known_blocks: resource|provider|variable|output|locals|module|data|terraform
68+
# data: https://developer.hashicorp.com/terraform/language/data-sources
69+
# ephemeral: https://developer.hashicorp.com/terraform/language/resources/ephemeral
70+
# locals: https://developer.hashicorp.com/terraform/language/values/locals
71+
# module: https://developer.hashicorp.com/terraform/language/modules/syntax
72+
# output: https://developer.hashicorp.com/terraform/language/values/outputs
73+
# provider: https://developer.hashicorp.com/terraform/language/providers/configuration
74+
# resource: https://developer.hashicorp.com/terraform/language/resources/syntax
75+
# terraform: https://developer.hashicorp.com/terraform/language/terraform#terraform-block-syntax
76+
# variable: https://developer.hashicorp.com/terraform/language/values/variables
77+
terraform_known_blocks: data|ephemeral|locals|module|output|provider|resource|terraform|variable
7778

7879
# Terraform built-in type keywords
7980
#

0 commit comments

Comments
 (0)