diff --git a/modules/aurora_database_cluster/main.tf b/modules/aurora_database_cluster/main.tf index c0d860aa..fa950d57 100644 --- a/modules/aurora_database_cluster/main.tf +++ b/modules/aurora_database_cluster/main.tf @@ -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 } diff --git a/modules/database/main.tf b/modules/database/main.tf index 6d9e5dd6..d7b632b7 100644 --- a/modules/database/main.tf +++ b/modules/database/main.tf @@ -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 }