File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ Below is an example usage of this Terraform module:
1919module "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"] ` |
Original file line number Diff line number Diff line change 11locals {
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}
Original file line number Diff line number Diff line change 11variable "instance_type" {
22 description = " EC2 instance type"
33 type = string
4- default = " t2.micro "
4+ default = " m5.large "
55}
66
77variable "vpc_cidr" {
You can’t perform that action at this time.
0 commit comments