12 lines
143 B
Terraform
12 lines
143 B
Terraform
|
terraform {
|
||
|
required_providers {
|
||
|
test = {
|
||
|
source = "hashicorp/test"
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
resource "test_instance" "test" {
|
||
|
ami = "baz"
|
||
|
}
|