We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 78b08c6 commit b1dd5b4Copy full SHA for b1dd5b4
src/main/resources/application-prod.yml
@@ -18,7 +18,7 @@ spring:
18
host: ${REDIS_HOST}
19
password: ${REDIS_PASSWORD}
20
datasource:
21
- url: jdbc:mysql://mysql_1:3306/${DATABASE_URL}
+ url: ${DATABASE_URL}
22
springdoc:
23
swagger-ui:
24
enabled: false
terraform/variables.tf
@@ -1,6 +1,6 @@
1
variable "instance_type" {
2
type = string # The type of the variable, in this case a string
3
- default = "t2.micro" # Default value for the variable
+ default = "t3.micro" # Default value for the variable
4
description = "The type of EC2 instance" # Description of what this variable represents
5
}
6
0 commit comments