mirror of
https://github.com/hashicorp/terraform.git
synced 2026-03-22 10:31:22 -04:00
14 lines
214 B
HCL
14 lines
214 B
HCL
terraform {
|
|
required_providers {
|
|
testing = {
|
|
source = "hashicorp/testing"
|
|
version = "0.1.0"
|
|
}
|
|
}
|
|
}
|
|
|
|
resource "testing_resource" "data" {}
|
|
|
|
output "id" {
|
|
value = testing_resource.data.id
|
|
}
|