mirror of
https://github.com/hashicorp/terraform.git
synced 2026-02-03 20:50:59 -05:00
13 lines
172 B
HCL
13 lines
172 B
HCL
terraform {
|
|
required_providers {
|
|
test = {
|
|
source = "hashicorp/test"
|
|
}
|
|
}
|
|
}
|
|
|
|
provider "test" {}
|
|
|
|
resource "test_instance" "example" {
|
|
ami = "ami-12345"
|
|
}
|