Skip to content

Commit

Permalink
Mais um fix 2
Browse files Browse the repository at this point in the history
  • Loading branch information
jonilsonds9 committed Jan 29, 2024
1 parent c3de0b7 commit f0ab4b3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion infra/rds_clients.tf
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ resource "aws_security_group" "rds_clients" {
}

resource "aws_db_instance" "rds_clients" {
identifier = "${var.app_name}-rds_clients"
identifier = "${var.app_name}-rds-clients"
instance_class = "db.t3.micro"
allocated_storage = 10
engine = "postgres"
Expand Down
2 changes: 1 addition & 1 deletion infra/rds_order.tf
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ resource "aws_security_group" "rds_order" {
}

resource "aws_db_instance" "rds_order" {
identifier = "${var.app_name}-rds_order"
identifier = "${var.app_name}-rds-order"
instance_class = "db.t3.micro"
allocated_storage = 10
engine = "postgres"
Expand Down
2 changes: 1 addition & 1 deletion infra/rds_production.tf
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ resource "aws_security_group" "rds_production" {
}

resource "aws_db_instance" "rds_production" {
identifier = "${var.app_name}-rds_production"
identifier = "${var.app_name}-rds-production"
instance_class = "db.t3.micro"
allocated_storage = 10
engine = "postgres"
Expand Down

0 comments on commit f0ab4b3

Please sign in to comment.