From 4e6ac28b2a7e9b54188d51493b917853f6246e1c Mon Sep 17 00:00:00 2001 From: Sandra Maria Peter Date: Sun, 26 May 2024 00:54:30 -0400 Subject: [PATCH] fix --- modules/aurora_database_cluster/main.tf | 2 +- modules/database/main.tf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 }