Skip to content

Commit 6271753

Browse files
authored
Initial commit
1 parent ce517aa commit 6271753

File tree

2 files changed

+60
-0
lines changed

2 files changed

+60
-0
lines changed

infra/outputs.tf

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
output "bedrock_role_arn" {
2+
description = "ARN of the Bedrock agent role"
3+
value = module.bedrock_role.role_arn
4+
}
5+
6+
output "knowledge_base_id" {
7+
description = "ID of the knowledge base"
8+
value = module.kb_stack.knowledge_base_id
9+
}
10+
11+
output "guardrail_id" {
12+
description = "ID of the guardrail"
13+
value = module.guardrail.guardrail_id
14+
}
15+
16+
output "user_pool_id" {
17+
description = "ID of the Cognito user pool"
18+
value = module.cognito.user_pool_id
19+
}
20+
21+
output "client_id" {
22+
description = "ID of the Cognito client"
23+
value = module.cognito.user_pool_client_id
24+
}
25+
26+
output "data_source_id" {
27+
description = "ID of the knowledge base data source"
28+
value = module.kb_stack.data_source_id
29+
}
30+
31+
output "s3_bucket_name" {
32+
description = "Name of the S3 bucket for knowledge base"
33+
value = module.kb_stack.s3_bucket_name
34+
}

infra/terraform.tfvars.example

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Bedrock Role Variables
2+
bedrock_role_name = "agentic-ai-bedrock-role"
3+
4+
# Cognito Variables
5+
user_pool_name = "agentic-ai-user-pool"
6+
7+
# Knowledge Base Stack Variables
8+
kb_stack_name = "agentic-ai-kb"
9+
kb_bucket_name = "agentic-ai-kb-bucket"
10+
11+
# Zendesk Variables
12+
zendesk_domain = "your-subdomain"
13+
zendesk_email = "your-email@example.com"
14+
zendesk_api_token = "your-zendesk-api-token"
15+
16+
# Langfuse Variables
17+
langfuse_host = "https://cloud.langfuse.com"
18+
langfuse_public_key = "your-langfuse-public-key"
19+
langfuse_secret_key = "your-langfuse-secret-key"
20+
21+
# Gateway Variables
22+
gateway_url = "https://your-gateway-url.example.com"
23+
gateway_api_key = "your-gateway-api-key"
24+
25+
# Tavily Variables
26+
tavily_api_key = "your-tavily-api-key"

0 commit comments

Comments
 (0)