# INTENTIONALLY INVALID. Four documented faults for an HCL2 parser or `terraform validate`:
#   1. the `examplecloud_network` resource block is never closed
#   2. `cidr_block` is assigned with `:` instead of `=`
#   3. a reference points at a resource that is not declared anywhere
#   4. a block label is missing on the second resource
resource "examplecloud_network" "main" {
  name       = "broken"
  cidr_block: "10.20.0.0/16"

resource "examplecloud_instance" {
  subnet_id = examplecloud_subnet.does_not_exist.id
  size      = var.instance_size
}
