-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathvariables.tf
More file actions
47 lines (46 loc) · 1.16 KB
/
variables.tf
File metadata and controls
47 lines (46 loc) · 1.16 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
# Bot stuff
variable "debug_enabled" {
description = "Enable debug mode for Lambda function"
type = string
default = ""
}
variable "knowledge_base_id" {
description = "Knowledge base ID for the Lambda function"
type = string
default = ""
}
variable "guardrails_id" {
description = "Guardrails ID for the Lambda function"
type = string
default = ""
}
variable "secret_name" {
description = "Name of the secret in AWS Secrets Manager"
type = string
}
variable "model_id" {
description = "Model ID for the Lambda function"
type = string
default = "us.anthropic.claude-sonnet-4-20250514-v1:0"
}
variable "bot_name" {
description = "Name of the bot"
type = string
}
variable "pagerduty_api_url" {
description = "PagerDuty API URL for MCP integration"
type = string
}
# MCP
variable "enable_pagerduty_mcp" {
description = "Enable PagerDuty MCP integration"
type = bool
}
variable "enable_github_mcp" {
description = "Enable GitHub MCP integration"
type = bool
}
variable "enable_atlassian_mcp" {
description = "Enable Atlassian MCP integration"
type = bool
}