mirror of
https://github.com/hashicorp/terraform.git
synced 2026-03-22 10:31:22 -04:00
18 lines
257 B
HCL
18 lines
257 B
HCL
terraform {
|
|
required_providers {
|
|
testing = {
|
|
source = "hashicorp/testing"
|
|
version = "0.1.0"
|
|
}
|
|
}
|
|
}
|
|
|
|
variable "input" {
|
|
type = string
|
|
const = true
|
|
default = "hello"
|
|
}
|
|
|
|
resource "testing_resource" "data" {
|
|
value = var.input
|
|
}
|