Skip to content

Commit 929808b

Browse files
authored
Add secret entry for the auth manager service (#105)
1 parent 615553f commit 929808b

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

outputs.tf

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -183,3 +183,8 @@ output "teams_webhook_secrets_arn" {
183183
description = "ARN of the secret with the teams webhooks"
184184
value = aws_secretsmanager_secret.teams_webhook_secrets.arn
185185
}
186+
187+
output "auth_manager_secrets_arn" {
188+
description = "ARN of the secrets of the auth manager service"
189+
value = aws_secretsmanager_secret.auth_manager_secrets.arn
190+
}

secretsmanager.tf

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,3 +98,8 @@ resource "aws_secretsmanager_secret" "teams_webhook_secrets" {
9898
name = "teams_webhook_secrets"
9999
description = "The webhooks of Teams to send SNS messages to Teams channels"
100100
}
101+
102+
resource "aws_secretsmanager_secret" "auth_manager_secrets" {
103+
name = "auth_manager_secrets"
104+
description = "Secrets for the Auth Manager service"
105+
}

0 commit comments

Comments
 (0)