mirror of
https://github.com/hashicorp/terraform.git
synced 2026-03-22 10:31:22 -04:00
12 lines
205 B
HCL
12 lines
205 B
HCL
terraform {
|
|
required_providers {
|
|
testing = {
|
|
source = "hashicorp/testing"
|
|
version = "0.1.0"
|
|
}
|
|
}
|
|
}
|
|
|
|
resource "testing_resource" "data" {
|
|
invalid = "this should fail validation"
|
|
}
|