mirror of
https://github.com/hashicorp/terraform.git
synced 2026-02-13 16:03:15 -05:00
10 lines
182 B
HCL
10 lines
182 B
HCL
resource "test_instance" "foo" {
|
|
ami = "bar"
|
|
|
|
network_interface {
|
|
device_index = 0
|
|
description = "Main network interface ${var.name}"
|
|
}
|
|
}
|
|
|
|
variable "name" {}
|