mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-03-05 11:01:25 -05:00
9 lines
127 B
HCL
9 lines
127 B
HCL
variable "services" {
|
|
type = list(map(string))
|
|
}
|
|
|
|
resource "aws_instance" "inner2" {
|
|
looked_up = var.services[0]["elb"]
|
|
}
|
|
|