mirror of
https://github.com/hashicorp/terraform.git
synced 2026-03-21 18:10:30 -04:00
12 lines
170 B
HCL
12 lines
170 B
HCL
terraform {
|
|
required_providers {
|
|
test = {
|
|
source = "hashicorp/test"
|
|
version = "1.0.0"
|
|
}
|
|
}
|
|
}
|
|
|
|
resource "test_instance" "foo" {
|
|
ami = "bar"
|
|
}
|