From 68ab912de1120a8338fa6201fee630b78175406e Mon Sep 17 00:00:00 2001 From: Amitai Getzler Date: Sun, 2 Apr 2023 17:24:18 +0300 Subject: [PATCH] :heavy_plus_sign: add client_password_auth_type for the auth map block modified: main.tf --- main.tf | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/main.tf b/main.tf index fb4d0f0..56156b3 100644 --- a/main.tf +++ b/main.tf @@ -25,10 +25,11 @@ resource "aws_db_proxy" "this" { dynamic "auth" { for_each = var.secrets content { - auth_scheme = var.auth_scheme - description = auth.value.description - iam_auth = var.iam_auth - secret_arn = auth.value.arn + auth_scheme = var.auth_scheme + description = auth.value.description + iam_auth = var.iam_auth + secret_arn = auth.value.arn + client_password_auth_type = auth.value.client_password_auth_type } }