Files
tree-sitter-jhcl/fuzz/corpus/hashicorp%terraforminternal%terraform%testdata%static-validate-refs%static-validate-refs.tf

24 lines
326 B
Terraform
Raw Normal View History

2021-09-17 20:53:40 +02:00
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" {
}