Skip to content

Commit 839a3e0

Browse files
committed
POC-1066: Update default instance type
1 parent 2cd0595 commit 839a3e0

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Below is an example usage of this Terraform module:
1919
module "pamoncloud_controller" {
2020
source = "cyberark/pamoncloud-controller/aws"
2121
22-
instance_type = "t3.medium"
22+
instance_type = "m5.xlarge"
2323
vpc_cidr = "172.31.0.0/16"
2424
subnet_cidr = "172.31.1.0/24"
2525
allowed_ssh_cidr = ["3.5.7.9/32", "2.4.6.8/32"]
@@ -54,7 +54,7 @@ No modules.
5454

5555
| Name | Description | Type | Default |
5656
|------|-------------|------|---------|
57-
| <a name="input_instance_type"></a> [instance\_type](#input\_instance\_type) | EC2 instance type for the controller node | `string` | `"t2.micro"` |
57+
| <a name="input_instance_type"></a> [instance\_type](#input\_instance\_type) | EC2 instance type for the controller node | `string` | `"m5.large"` |
5858
| <a name="input_vpc_cidr"></a> [vpc\_cidr](#input\_vpc\_cidr) | CIDR block for the VPC | `string` | `"10.0.0.0/16"` |
5959
| <a name="input_subnet_cidr"></a> [subnet\_cidr](#input\_subnet\_cidr) | CIDR block for the subnet | `string` | `"10.0.1.0/24"` |
6060
| <a name="input_allowed_ssh_cidr"></a> [allowed\_ssh\_cidr](#input\_allowed\_ssh\_cidr) | CIDR blocks allowed for SSH inbound access | `list` | `["0.0.0.0/0"]` |

examples/simple/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
locals {
22
aws_region = "eu-west-1"
3-
instance_type = "t2.micro"
3+
instance_type = "m5.large"
44
vpc_cidr = "10.0.0.0/16"
55
subnet_cidr = "10.0.1.0/24"
66
}

variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
variable "instance_type" {
22
description = "EC2 instance type"
33
type = string
4-
default = "t2.micro"
4+
default = "m5.large"
55
}
66

77
variable "vpc_cidr" {

0 commit comments

Comments
 (0)