From 6fe9ffab4734ae52ac6ebe6823286bbd2e22d911 Mon Sep 17 00:00:00 2001 From: samidbb Date: Tue, 12 Dec 2023 19:58:37 +0100 Subject: [PATCH] test updated --- tests/instance/main.tf | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/tests/instance/main.tf b/tests/instance/main.tf index be9f00c9..8ff601b5 100644 --- a/tests/instance/main.tf +++ b/tests/instance/main.tf @@ -33,12 +33,12 @@ module "rds_instance_test" { subnet_ids = concat(module.vpc.public_subnets) enabled_cloudwatch_logs_exports = ["upgrade", "postgresql"] cloudwatch_log_group_retention_in_days = 1 - include_proxy = true + include_proxy = false proxy_debug_logging = true enhanced_monitoring_interval = 0 allow_major_version_upgrade = true - engine_version = "15.4" - performance_insights_enabled = true + # engine_version = "15.4" + performance_insights_enabled = true # Group variables into maps vpc_id = module.vpc.vpc_id @@ -60,6 +60,7 @@ module "rds_instance_test" { }, ] } + environment = "dev" } ################################################################################