Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions solutions/fully-configurable/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ variable "application_loadbalancer_pool_algorithm" {
variable "application_loadbalancer_pool_member_port" {
type = number
description = "The port where traffic is sent to the instance."
default = 80
default = 443
}

variable "application_loadbalancer_pool_health_delay" {
Expand Down Expand Up @@ -151,7 +151,7 @@ variable "application_loadbalancer_pool_protocol" {
variable "application_loadbalancer_listener_port" {
type = number
description = "The listener port for the Private Path network load balancer."
default = 80
default = 443
}

variable "application_loadbalancer_listener_protocol" {
Expand Down Expand Up @@ -191,7 +191,7 @@ variable "network_loadbalancer_name" {
variable "network_loadbalancer_listener_port" {
type = number
description = "The listener port for the Private Path network load balancer."
default = 80
default = 443
}

variable "network_loadbalancer_listener_accept_proxy_protocol" {
Expand Down Expand Up @@ -239,13 +239,13 @@ variable "network_loadbalancer_pool_health_monitor_url" {
variable "network_loadbalancer_pool_health_monitor_port" {
type = number
description = "The port on which the load balancer sends health check requests. By default, health checks are sent on the same port where traffic is sent to the instance."
default = 80
default = 443
}

variable "network_loadbalancer_pool_member_port" {
type = number
description = "The port where traffic is sent to the instance."
default = 80
default = 443
}

##############################################################################
Expand Down