Files
tree-sitter-jhcl/fuzz/corpus/hashicorp%terraforminternal%terraform%testdata%static-validate-refs%static-validate-refs.tf
2021-09-19 12:00:18 +02:00

24 lines
326 B
HCL

terraform {
required_providers {
boop = {
source = "foobar/beep" # intentional mismatch between local name and type
}
}
}
resource "aws_instance" "no_count" {
}
resource "aws_instance" "count" {
count = 1
}
resource "boop_instance" "yep" {
}
resource "boop_whatever" "nope" {
}
data "beep" "boop" {
}