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

@ -29,6 +29,7 @@ resource "aws_db_proxy" "this" {
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
} }
} }