12 lines
144 B
Terraform
12 lines
144 B
Terraform
|
terraform {
|
||
|
required_providers {
|
||
|
test = {
|
||
|
source = "hashicorp2/test"
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
resource "test_instance" "test" {
|
||
|
ami = "bar"
|
||
|
}
|