Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions modules/high_availability_existing_vnet/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ module "example_module" {
authentication_type = "Password"
availability_type = "Availability Zone"
enable_custom_metrics = true
enable_floating_ip = false
enable_floating_ip = true
use_public_ip_prefix = false
create_public_ip_prefix = false
existing_public_ip_prefix_id = ""
Expand Down Expand Up @@ -117,7 +117,7 @@ module "example_module" {
| **authentication_type** | Specifies whether a password authentication or SSH Public Key authentication should be used | string | "Password";<br />"SSH Public Key";<br /> |
| **availability_type** | Specifies whether to deploy the solution based on Azure Availability Set or based on Azure Availability Zone | string | "Availability Zone";<br />"Availability Set";<br />**Default:** "Availability Zone" |
| **enable_custom_metrics** | Indicates whether CloudGuard Metrics will be used for Cluster members monitoring | boolean | true;<br />false;<br />**Default:** true |
| **enable_floating_ip** | Indicates whether the load balancers will be deployed with floating IP | boolean | true;<br />false;<br />**Default:** false |
| **enable_floating_ip** | Indicates whether the load balancers will be deployed with floating IP | boolean | true;<br />false;<br />**Default:** true |
| **use_public_ip_prefix** | Indicates whether the public IP resources will be deployed with public IP prefix | boolean | true;<br />false;<br />**Default:** false |
| **create_public_ip_prefix** | Indicates whether the public IP prefix will be created or an existing one will be used | boolean | true;<br />false;<br />**Default:** false |
| **existing_public_ip_prefix_id** | The existing public IP prefix resource ID | string | Existing public IP prefix resource ID<br /> |
Expand Down
2 changes: 1 addition & 1 deletion modules/high_availability_existing_vnet/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ variable "enable_custom_metrics" {
variable "enable_floating_ip" {
description = "Indicates whether the load balancers will be deployed with floating IP."
type = bool
default = false
default = true
}

variable "use_public_ip_prefix" {
Expand Down
4 changes: 2 additions & 2 deletions modules/high_availability_new_vnet/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ module "example_module" {
authentication_type = "Password"
availability_type = "Availability Zone"
enable_custom_metrics = true
enable_floating_ip = false
enable_floating_ip = true
use_public_ip_prefix = false
create_public_ip_prefix = false
existing_public_ip_prefix_id = ""
Expand Down Expand Up @@ -118,7 +118,7 @@ module "example_module" {
| **authentication_type** | Specifies whether a password authentication or SSH Public Key authentication should be used | string | "Password";<br />"SSH Public Key";<br /> |
| **availability_type** | Specifies whether to deploy the solution based on Azure Availability Set or Azure Availability Zone | string | "Availability Zone";<br />"Availability Set";<br />**Default:** "Availability Zone" |
| **enable_custom_metrics** | Indicates whether CloudGuard Metrics will be used for Cluster members monitoring | boolean | true;<br />false;<br />**Default:** true |
| **enable_floating_ip** | Indicates whether the load balancers will be deployed with floating IP | boolean | true;<br />false;<br />**Default:** false |
| **enable_floating_ip** | Indicates whether the load balancers will be deployed with floating IP | boolean | true;<br />false;<br />**Default:** true |
| **use_public_ip_prefix** | Indicates whether the public IP resources will be deployed with public IP prefix | boolean | true;<br />false;<br />**Default:** false |
| **create_public_ip_prefix** | Indicates whether the public IP prefix will be created or an existing one will be used | boolean | true;<br />false;<br />**Default:** false |
| **existing_public_ip_prefix_id** | The existing public IP prefix resource ID | string | Existing public IP prefix resource ID<br />**Default:** "" |
Expand Down
2 changes: 1 addition & 1 deletion modules/high_availability_new_vnet/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ variable "enable_custom_metrics" {
variable "enable_floating_ip" {
description = "Indicates whether the load balancers will be deployed with floating IP."
type = bool
default = false
default = true
}

variable "use_public_ip_prefix" {
Expand Down
4 changes: 2 additions & 2 deletions modules/vmss_existing_vnet/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ module "example_module" {
frontend_load_distribution = "Default"
backend_load_distribution = "Default"
enable_custom_metrics = true
enable_floating_ip = false
enable_floating_ip = true
use_public_ip_prefix = false
create_public_ip_prefix = false
existing_public_ip_prefix_id = ""
Expand Down Expand Up @@ -132,7 +132,7 @@ module "example_module" {
| **backend_load_distribution** | The load balancing distribution method for the Internal Load Balancer | string | "Default" - None(5-tuple);<br/>"SourceIP" - ClientIP(2-tuple);<br/>"SourceIPProtocol" - ClientIP and protocol(3-tuple). |
| **notification_email** | An email address to notify about scaling operations | string | Leave empty double quotes or enter a valid email address. |
| **enable_custom_metrics** | Indicates whether Custom Metrics will be used for VMSS Scaling policy and VM monitoring | boolean | true;<br/>false.<br/>**Default:** true |
| **enable_floating_ip** | Indicates whether the load balancers will be deployed with floating IP | boolean | true;<br/>false.<br/>**Default:** false |
| **enable_floating_ip** | Indicates whether the load balancers will be deployed with floating IP | boolean | true;<br/>false.<br/>**Default:** true |
| **use_public_ip_prefix** | Indicates whether the public IP resources will be deployed with public IP prefix. | boolean | true;<br/>false;<br/>**Default:** false |
| **create_public_ip_prefix** | Indicates whether the public IP prefix will be created or an existing one will be used. | boolean | true;<br/>false;<br/>**Default:** false |
| **existing_public_ip_prefix_id** | The existing public IP prefix resource ID. | string | Existing public IP prefix resource ID<br/>**Default:** "" |
Expand Down
2 changes: 1 addition & 1 deletion modules/vmss_existing_vnet/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ variable "enable_custom_metrics" {
variable "enable_floating_ip" {
description = "Indicates whether the load balancers will be deployed with floating IP."
type = bool
default = false
default = true
}

variable "use_public_ip_prefix" {
Expand Down
4 changes: 2 additions & 2 deletions modules/vmss_new_vnet/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ module "example_module" {
frontend_load_distribution = "Default"
backend_load_distribution = "Default"
enable_custom_metrics = true
enable_floating_ip = false
enable_floating_ip = true
use_public_ip_prefix = false
create_public_ip_prefix = false
existing_public_ip_prefix_id = ""
Expand Down Expand Up @@ -131,7 +131,7 @@ module "example_module" {
| **backend_load_distribution** | The load balancing distribution method for the Internal Load Balancer | string | "Default" - None (5-tuple);<br />"SourceIP" - ClientIP (2-tuple);<br />"SourceIPProtocol" - ClientIP and protocol (3-tuple)<br /> |
| **notification_email** | An email address to notify about scaling operations | string | Leave empty double quotes or enter a valid email address<br /> |
| **enable_custom_metrics** | Indicates whether Custom Metrics will be used for VMSS Scaling policy and VM monitoring | boolean | true;<br />false;<br /> |
| **enable_floating_ip** | Indicates whether the load balancers will be deployed with floating IP | boolean | true;<br />false;<br /> |
| **enable_floating_ip** | Indicates whether the load balancers will be deployed with floating IP | boolean | true;<br />false;<br />**Default:** true |
| **use_public_ip_prefix** | Indicates whether the public IP resources will be deployed with public IP prefix. | boolean | true;<br />false;<br />**Default:** false |
| **create_public_ip_prefix** | Indicates whether the public IP prefix will be created or an existing one will be used. | boolean | true;<br />false;<br />**Default:** false |
| **existing_public_ip_prefix_id** | The existing public IP prefix resource ID. | string | Existing public IP prefix resource ID<br />**Default:** "" |
Expand Down
2 changes: 1 addition & 1 deletion modules/vmss_new_vnet/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ variable "enable_custom_metrics" {
variable "enable_floating_ip" {
description = "Indicates whether the load balancers will be deployed with floating IP."
type = bool
default = false
default = true
}

variable "use_public_ip_prefix" {
Expand Down
Loading