generated from terraform-ibm-modules/terraform-ibm-module-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
21 lines (20 loc) · 1.07 KB
/
variables.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
########################################################################################################################
# Dedicated Host Input Variables
########################################################################################################################
variable "dedicated_hosts" {
type = list(object({
host_group_name = string
existing_host_group = optional(bool, false)
resource_group_id = string
class = optional(string, "bx2")
family = optional(string, "balanced")
zone = optional(string, "us-south-1")
dedicated_host = list(object({
name = string
profile = optional(string, "bx2-host-152x608")
access_tags = optional(list(string), [])
}))
}))
description = "A list of objects which contain the required inputs for the dedicated host and dedicated host groups, a flag indicating the user to use an existing host group by enabling it. Also has the default values for a dedicated host setup which are recommended by IBM Cloud."
nullable = false
}