Update saml-auth-proxy addon to output its secret_id (#14231)

This is needed to automatically populate the secret from outside of the
module with an `aws_secretsmanager_secret_version`
This commit is contained in:
Robert Fairburn 2023-10-02 10:57:58 -05:00 committed by GitHub
parent 3ac1bd05b0
commit 4d5902108d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -11,3 +11,7 @@ output "name" {
output "lb_target_group_arn" {
value = module.saml_auth_proxy_alb.target_group_arns[0]
}
output "secretsmanager_secret_id" {
value = aws_secretsmanager_secret.saml_auth_proxy_cert.id
}