File tree Expand file tree Collapse file tree 2 files changed +78
-0
lines changed
Expand file tree Collapse file tree 2 files changed +78
-0
lines changed Original file line number Diff line number Diff line change 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+ }
Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments