File tree Expand file tree Collapse file tree 4 files changed +12
-3
lines changed
terraform/oss-standalone-redisearch-m5 Expand file tree Collapse file tree 4 files changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ resource "aws_instance" "client" {
7
7
vpc_security_group_ids = [" ${ data . terraform_remote_state . shared_resources . outputs . performance_cto_sg_id } " ]
8
8
key_name = var. key_name
9
9
associate_public_ip_address = " true"
10
- placement_group = data. terraform_remote_state . shared_resources . outputs . perf_cto_pg_name
10
+ # placement_group = data.terraform_remote_state.shared_resources.outputs.perf_cto_pg_name
11
11
availability_zone = " us-east-2a"
12
12
13
13
root_block_device {
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ resource "aws_instance" "server" {
7
7
vpc_security_group_ids = [" ${ data . terraform_remote_state . shared_resources . outputs . performance_cto_sg_id } " ]
8
8
key_name = var. key_name
9
9
associate_public_ip_address = " true"
10
- placement_group = data. terraform_remote_state . shared_resources . outputs . perf_cto_pg_name
10
+ # placement_group = data.terraform_remote_state.shared_resources.outputs.perf_cto_pg_name
11
11
availability_zone = " us-east-2a"
12
12
13
13
cpu_options {
Original file line number Diff line number Diff line change @@ -3,6 +3,15 @@ provider "aws" {
3
3
region = var. region
4
4
}
5
5
6
+ terraform {
7
+ required_providers {
8
+ aws = {
9
+ source = " hashicorp/aws"
10
+ version = " 5.94.1"
11
+ }
12
+ }
13
+ }
14
+
6
15
# ###############################################################################
7
16
# This is the shared resources bucket key -- you will need it across environments like security rules,etc...
8
17
# !! do not change this !!
Original file line number Diff line number Diff line change @@ -171,7 +171,7 @@ variable "server_instance_cpu_threads_per_core" {
171
171
172
172
variable "client_instance_type" {
173
173
description = " type for aws EC2 instance"
174
- default = " c6i .4xlarge"
174
+ default = " m6i .4xlarge"
175
175
}
176
176
177
177
variable "client_instance_count" {
You can’t perform that action at this time.
0 commit comments