Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sandrampeter committed May 26, 2024
1 parent d655de1 commit 4e6ac28
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion modules/aurora_database_cluster/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ resource "random_string" "aurora_postgresql_password" {
}

resource "aws_security_group" "aurora_postgresql" {
description = "The security group of the PostgreSQL deployment for TFE."
description = "The security group of the Aurora PostgreSQL deployment for TFE."
name = "${var.friendly_name_prefix}-tfe-aurora-postgresql"
vpc_id = var.network_id
}
Expand Down
2 changes: 1 addition & 1 deletion modules/database/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ resource "random_string" "postgresql_password" {
}

resource "aws_security_group" "postgresql" {
description = "The security group of the Aurora PostgreSQL deployment for TFE."
description = "The security group of the PostgreSQL deployment for TFE."
name = "${var.friendly_name_prefix}-tfe-postgresql"
vpc_id = var.network_id
}
Expand Down

0 comments on commit 4e6ac28

Please sign in to comment.