Skip to content

Commit f74393d

Browse files
authored
Add files via upload
1 parent 33dbd8f commit f74393d

File tree

2 files changed

+78
-0
lines changed

2 files changed

+78
-0
lines changed

infra/modules/secrets/outputs.tf

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
output "cognito_client_secret_arn" {
2+
description = "ARN of the Cognito client secret"
3+
value = aws_secretsmanager_secret.cognito_client_secret.arn
4+
}
5+
6+
output "zendesk_credentials_arn" {
7+
description = "ARN of the Zendesk credentials secret"
8+
value = aws_secretsmanager_secret.zendesk_credentials.arn
9+
}
10+
11+
output "langfuse_credentials_arn" {
12+
description = "ARN of the Langfuse credentials secret"
13+
value = aws_secretsmanager_secret.langfuse_credentials.arn
14+
}
15+
16+
output "gateway_credentials_arn" {
17+
description = "ARN of the gateway credentials secret"
18+
value = aws_secretsmanager_secret.gateway_credentials.arn
19+
}
20+
21+
output "tavily_key_arn" {
22+
description = "ARN of the Tavily API key secret"
23+
value = aws_secretsmanager_secret.tavily_key.arn
24+
}

infra/modules/secrets/variables.tf

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
variable "cognito_client_secret" {
2+
description = "Cognito client secret"
3+
type = string
4+
sensitive = true
5+
}
6+
7+
variable "zendesk_domain" {
8+
description = "Zendesk domain"
9+
type = string
10+
}
11+
12+
variable "zendesk_email" {
13+
description = "Zendesk email"
14+
type = string
15+
}
16+
17+
variable "zendesk_api_token" {
18+
description = "Zendesk API token"
19+
type = string
20+
sensitive = true
21+
}
22+
23+
variable "langfuse_host" {
24+
description = "Langfuse host"
25+
type = string
26+
}
27+
28+
variable "langfuse_public_key" {
29+
description = "Langfuse public key"
30+
type = string
31+
}
32+
33+
variable "langfuse_secret_key" {
34+
description = "Langfuse secret key"
35+
type = string
36+
sensitive = true
37+
}
38+
39+
variable "gateway_url" {
40+
description = "Gateway URL"
41+
type = string
42+
}
43+
44+
variable "gateway_api_key" {
45+
description = "Gateway API key"
46+
type = string
47+
sensitive = true
48+
}
49+
50+
variable "tavily_api_key" {
51+
description = "Tavily API key"
52+
type = string
53+
sensitive = true
54+
}

0 commit comments

Comments
 (0)