mirror of
https://github.com/terraform-aws-modules/terraform-aws-rds-proxy.git
synced 2025-12-17 00:11:11 +00:00
➕ add client_password_auth_type for the auth map block
modified: main.tf
This commit is contained in:
parent
5d1c5e67ea
commit
68ab912de1
1 changed files with 5 additions and 4 deletions
9
main.tf
9
main.tf
|
|
@ -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
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue