From 34323b11e00fa804a4c96fdf456bd5de77753007 Mon Sep 17 00:00:00 2001 From: Michal Czeraszkiewicz Date: Thu, 20 Feb 2020 15:38:03 +0100 Subject: [PATCH] Add sqlserver-se to rds_sg_rule_name --- rds.tf | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/rds.tf b/rds.tf index c72d70f..8c5a5de 100644 --- a/rds.tf +++ b/rds.tf @@ -9,9 +9,10 @@ locals { # ------------------------------------------------------------------------------------------------- locals { rds_sg_rule_name = { - mysql = "mysql-tcp" - postgres = "postgresql-tcp" - default = "postgresql-tcp" + mysql = "mysql-tcp" + postgres = "postgresql-tcp" + sqlserver-se = "mssql-tcp" + default = "postgresql-tcp" } }