14 lines
298 B
Terraform
14 lines
298 B
Terraform
|
|
variable "filename" {
|
||
|
|
description = "Path to write the inventory.yml file"
|
||
|
|
type = string
|
||
|
|
}
|
||
|
|
|
||
|
|
variable "instances" {
|
||
|
|
description = "Normalized instance map keyed by instance key"
|
||
|
|
type = map(object({
|
||
|
|
service_name = string
|
||
|
|
vm_name = string
|
||
|
|
ipv4_address = string
|
||
|
|
}))
|
||
|
|
}
|