Open sabaimran opened 5 months ago
Voting for Prioritization
Volunteering to Work on This Issue
Probably a stupid suggestion but have you tried:-
resource "aws_secretsmanager_secret_version" "test_db_secret" {
secret_id = aws_secretsmanager_secret.test_db_secret.id
secret_string = jsonencode({
username = "postgres"
password = "hellopassword"
})
}
Terraform Core Version
1.5.2
AWS Provider Version
5.42.0
Affected Resource(s)
When using the
aws_db_proxy
resource (link to documentation), I get this error when trying to usePOSTGRES_MD5
as the authentication type.Expected Behavior
Expect to be able to use
POSTGRES_MD5
, as described in the documentation.Actual Behavior
I get this error:
Relevant Error/Panic Output Snippet
Terraform Configuration Files
With a DB as
test_db
,Steps to Reproduce
Use a Postgres 11+ DB with name
test_db
and apply the terraform above.Debug Output
n/a
Panic Output
n/a
Important Factoids
n/a
References
https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/db_proxy#client_password_auth_type
Would you like to implement a fix?
No