Add Terraform IAC DSL (#1365)

This commit is contained in:
krallice
2022-05-24 10:40:45 +10:00
committed by GitHub
parent 217b4b408c
commit a80e0e9643
2 changed files with 5 additions and 1 deletions

View File

@@ -8,7 +8,7 @@ Thanks to everyone who continues to contribute; new languages are created every
Make sure to see [contributing.md](/contributing.md) for instructions on contributing to the project!
<!--Languages start-->
## Languages (931 total)
## Languages (932 total)
* [!](%23/%21)
* [!@#$%^&*()_+](%23/%21%40%23%24%25%5E%26%E2%88%97%28%29_%2B)
@@ -830,6 +830,7 @@ Make sure to see [contributing.md](/contributing.md) for instructions on contrib
* [Tea](t/Tea.tea)
* [Telephone](t/Telephone)
* [Terra](t/Terra.t)
* [Terraform](t/Terraform.tf)
* [TeX](t/TeX.tex)
* [ThotPatrol](t/ThotPatrol.txt)
* [THP](t/THP.hrp)

3
t/Terraform.tf Normal file
View File

@@ -0,0 +1,3 @@
output "msg" {
value = "Hello World"
}