2022-09-26 08:11:52 -04:00
variable " name " {
type = string
2023-12-15 04:36:58 -05:00
description = " Name of the Constellation cluster. "
2022-09-26 08:11:52 -04:00
}
variable " health_check " {
type = string
2023-12-15 04:36:58 -05:00
description = " Type of the health check. Can either be 'HTTPS' or 'TCP'. "
2022-09-26 08:11:52 -04:00
}
variable " backend_port_name " {
type = string
2023-12-15 04:36:58 -05:00
description = " Name of the load balancer's backend port. The same name should appear in the instance groups referenced by this service. "
2022-09-26 08:11:52 -04:00
}
2023-06-19 07:02:01 -04:00
variable " backend_instance_groups " {
type = list ( string )
2023-12-15 04:36:58 -05:00
description = " URLs of the instance group resources from which the load balancer will direct traffic. "
2022-09-26 08:11:52 -04:00
}
variable " ip_address " {
type = string
2023-12-15 04:36:58 -05:00
description = " IP address that this forwarding rule serves. An address can be specified either by a literal IP address or a reference to an existing Address resource. "
2022-09-26 08:11:52 -04:00
}
variable " port " {
type = number
2023-12-15 04:36:58 -05:00
description = " Port to listen on for incoming traffic. "
2022-09-26 08:11:52 -04:00
}
variable " frontend_labels " {
type = map ( string )
default = { }
2023-12-15 04:36:58 -05:00
description = " Labels to apply to the load balancer's forwarding rule. "
2022-09-26 08:11:52 -04:00
}