-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathoutputs.tf
More file actions
73 lines (60 loc) · 1.96 KB
/
outputs.tf
File metadata and controls
73 lines (60 loc) · 1.96 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# Outputs
output "receiver_lambda_url" {
value = module.receiver.receiver_slack_trigger_function_url
description = "Lambda webhook URL - configure this in Slack App Event Subscriptions"
}
output "ecr_repository_url" {
value = aws_ecr_repository.veraslack.repository_url
description = "ECR repository URL for pushing container images"
}
output "gateway_id" {
value = module.gateway.gateway_id
description = "Gateway identifier"
}
output "gateway_url" {
value = module.gateway.gateway_url
description = "Gateway URL endpoint"
}
output "mcp_gateway_arn" {
value = module.gateway.gateway_arn
description = "Gateway ARN"
}
output "mcp_gateway_scope" {
value = module.gateway.gateway_scope
description = "OAuth scope for gateway access"
}
output "cognito_user_pool_id" {
value = module.gateway.cognito_user_pool_id
description = "Cognito user pool ID for gateway authentication"
}
output "cognito_user_pool_arn" {
value = module.gateway.cognito_user_pool_arn
description = "Cognito user pool ARN for IAM policy"
}
output "cognito_client_id" {
value = module.gateway.cognito_client_id
description = "Cognito client ID for gateway authentication"
sensitive = true
}
output "cognito_client_secret" {
value = module.gateway.cognito_client_secret
description = "Cognito client secret for gateway authentication"
sensitive = true
}
output "cognito_token_url" {
value = module.gateway.cognito_token_url
description = "Cognito OAuth token endpoint URL"
}
# Memory Outputs (shared with VeraTeams)
output "memory_id" {
description = "AgentCore Memory ID (shared between Vera bots)"
value = aws_bedrockagentcore_memory.vera_memory.id
}
output "memory_arn" {
description = "AgentCore Memory ARN"
value = aws_bedrockagentcore_memory.vera_memory.arn
}
output "memory_name" {
description = "AgentCore Memory name"
value = aws_bedrockagentcore_memory.vera_memory.name
}