Skip to content

Commit

Permalink
Merge pull request #449 from imperva/jagdeep/increaseDiskSize
Browse files Browse the repository at this point in the history
updating apps directory size and test instance type
  • Loading branch information
jagdeep-sonar authored Dec 5, 2024
2 parents 1454045 + 4881aa9 commit be5ae89
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ variable "hub_instance_type" {

variable "agentless_gw_instance_type" {
type = string
default = "r6i.xlarge"
default = "r6i.2xlarge"
description = "Ec2 instance type for the Agentless Gateway"
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ variable "hub_instance_type" {

variable "gw_instance_type" {
type = string
default = "r6i.xlarge"
default = "r6i.2xlarge"
description = "Ec2 instance type for the DSF gw"
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ variable "hub_instance_type" {

variable "gw_instance_type" {
type = string
default = "r6i.xlarge"
default = "r6i.2xlarge"
description = "Ec2 instance type for the Agentless Gateway"
}

Expand Down
4 changes: 2 additions & 2 deletions examples/aws/poc/dsf_deployment/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -246,13 +246,13 @@ variable "agentless_gw_hadr" {

variable "hub_instance_type" {
type = string
default = "r6i.xlarge"
default = "r6i.2xlarge"
description = "Ec2 instance type for the DSF Hub"
}

variable "agentless_gw_instance_type" {
type = string
default = "r6i.xlarge"
default = "r6i.2xlarge"
description = "Ec2 instance type for the Agentless Gateway"
}

Expand Down
4 changes: 2 additions & 2 deletions examples/aws/poc/sonar_basic_deployment/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -94,13 +94,13 @@ variable "subnet_ids" {

variable "hub_instance_type" {
type = string
default = "r6i.xlarge"
default = "r6i.2xlarge"
description = "Ec2 instance type for the DSF Hub"
}

variable "agentless_gw_instance_type" {
type = string
default = "r6i.xlarge"
default = "r6i.2xlarge"
description = "Ec2 instance type for the Agentless Gateway"
}

Expand Down
4 changes: 2 additions & 2 deletions examples/aws/poc/sonar_hadr_deployment/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -110,13 +110,13 @@ variable "subnet_ids" {

variable "hub_instance_type" {
type = string
default = "r6i.xlarge"
default = "r6i.2xlarge"
description = "Ec2 instance type for the DSF Hub"
}

variable "agentless_gw_instance_type" {
type = string
default = "r6i.xlarge"
default = "r6i.2xlarge"
description = "Ec2 instance type for the Agentless Gateway"
}

Expand Down
2 changes: 1 addition & 1 deletion modules/aws/agentless-gw/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ variable "use_public_ip" {

variable "instance_type" { # https://docs.imperva.com/bundle/z-kb-articles-km/page/a6defd0e.html
type = string
default = "r6i.xlarge" # 4 cores & 32GB ram
default = "r6i.2xlarge" # 8 cores & 64GB ram
description = "Ec2 instance type for the Agentless Gateway"
}

Expand Down
2 changes: 1 addition & 1 deletion modules/aws/sonar-base-instance/setup.tftpl
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ function create_lvm() {
# Create logical volumes with lowercase names
lvcreate --name logs -L 20G $volume_group_name
lvcreate --name local -L 20G $volume_group_name
lvcreate --name apps -L 30G $volume_group_name
lvcreate --name apps -L 40G $volume_group_name
lvcreate -l 100%FREE --name data $volume_group_name

# Format the logical volumes with desired filesystem (e.g., xfs)
Expand Down

0 comments on commit be5ae89

Please sign in to comment.