Skip to content

Commit 4d80860

Browse files
committed
4 feat: EC2 Instance t2.micro -> t3.micro로 변경
1 parent 8c2536a commit 4d80860

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

component/sandbox/ecs-ec2/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ variable "public_subnet_ids" {
1616
variable "instance_type" {
1717
type = string
1818
description = "EC2 instance type for ECS EC2"
19-
default = "t2.micro"
19+
default = "t3.micro"
2020
}
2121

2222
variable "ecs_desired_capacity" {

component/sandbox/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ module "ecs_ec2" {
66
vpc_id = var.vpc_id
77
public_subnet_ids = var.public_subnet_ids
88

9-
instance_type = "t2.micro"
9+
instance_type = "t3.micro"
1010
ecs_desired_capacity = 1
1111
ecs_min_size = 1
1212
ecs_max_size = 1

component/sandbox/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ variable "public_subnet_ids" {
1111
variable "instance_type" {
1212
description = "EC2 instance type for ECS EC2"
1313
type = string
14-
default = "t2.micro"
14+
default = "t3.micro"
1515
}

0 commit comments

Comments
 (0)