Skip to content

Commit 8a40592

Browse files
committed
fix: 프로덕션 환경에 맞게 수정
1 parent dd578e6 commit 8a40592

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

infra/aws/terraform/ec2.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ resource "aws_instance" "ec2_1" {
9292
# 사용할 AMI ID
9393
ami = data.aws_ami.latest_amazon_linux.id
9494
# EC2 인스턴스 유형
95-
instance_type = "t3.micro"
95+
instance_type = "t3.small"
9696
# 사용할 서브넷 ID
9797
subnet_id = aws_subnet.subnet_1.id
9898
# 적용할 보안 그룹 ID

infra/aws/terraform/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ variable "base_domain" {
2424
type = string
2525
# 25.09.29 개발 목적으로 설정
2626
# 추후 배포용으로 변경 예정
27-
default = "gooraeng.xyz"
27+
default = "relife.kr"
2828
}
2929

3030
# fixme: CDN 도메인 변수

0 commit comments

Comments
 (0)