Skip to content

Commit b1dd5b4

Browse files
committed
fix : DATABSE_URL 환경변수 수정
1 parent 78b08c6 commit b1dd5b4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/resources/application-prod.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ spring:
1818
host: ${REDIS_HOST}
1919
password: ${REDIS_PASSWORD}
2020
datasource:
21-
url: jdbc:mysql://mysql_1:3306/${DATABASE_URL}
21+
url: ${DATABASE_URL}
2222
springdoc:
2323
swagger-ui:
2424
enabled: false

terraform/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
variable "instance_type" {
22
type = string # The type of the variable, in this case a string
3-
default = "t2.micro" # Default value for the variable
3+
default = "t3.micro" # Default value for the variable
44
description = "The type of EC2 instance" # Description of what this variable represents
55
}
66

0 commit comments

Comments
 (0)