mirror of
https://github.com/opentffoundation/opentf.git
synced 2025-12-31 16:00:31 -05:00
11 lines
182 B
HCL
11 lines
182 B
HCL
resource "test_instance" "foo" {
|
|
ami = "bar"
|
|
|
|
network_interface {
|
|
device_index = 0
|
|
description = "Main network interface ${var.name}"
|
|
}
|
|
}
|
|
|
|
variable "name" {}
|