27 lines
514 B
HCL
Executable file
27 lines
514 B
HCL
Executable file
variable "project_id" {
|
|
type = string
|
|
}
|
|
|
|
variable "host_info" {
|
|
type = object({
|
|
name = string
|
|
host_count = number
|
|
image_id = string
|
|
flavour_id = string
|
|
availability_zone = string
|
|
performance_class = string
|
|
boot_image_size = number
|
|
network_id = string
|
|
})
|
|
}
|
|
|
|
variable "ssh_source_ips" {
|
|
type = list(string)
|
|
default = ["185.124.195.0/24"]
|
|
}
|
|
|
|
|
|
variable "host_ini_outpath" {
|
|
type = string
|
|
default = "ansible/host.ini"
|
|
}
|