add client_password_auth_type for the auth map block

modified:   main.tf
This commit is contained in:
Amitai Getzler 2023-04-02 17:24:18 +03:00
parent 5d1c5e67ea
commit 68ab912de1

View file

@ -25,10 +25,11 @@ resource "aws_db_proxy" "this" {
dynamic "auth" { dynamic "auth" {
for_each = var.secrets for_each = var.secrets
content { content {
auth_scheme = var.auth_scheme auth_scheme = var.auth_scheme
description = auth.value.description description = auth.value.description
iam_auth = var.iam_auth iam_auth = var.iam_auth
secret_arn = auth.value.arn secret_arn = auth.value.arn
client_password_auth_type = auth.value.client_password_auth_type
} }
} }