10 lines
113 B
Terraform
10 lines
113 B
Terraform
|
terraform {
|
||
|
backend "http" {
|
||
|
test = true
|
||
|
}
|
||
|
}
|
||
|
|
||
|
resource "test_instance" "foo" {
|
||
|
ami = "bar"
|
||
|
}
|