blob: d76101669907577bc055ad8bf916979250b39ea1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
variable "flavour_name" {
description = "(Optional; Required if flavor_id is empty) The name of the desired flavor for the server. Changing this resizes the existing server."
type = string
}
variable "network_id_data" {
description = "(Required) The ID of the network to attach the port to. Changing this creates a new port."
type = string
}
variable "network_id_mgmt" {
description = "(Required) The ID of the network to attach the port to. Changing this creates a new port."
type = string
}
|