-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
65 lines (55 loc) · 1.62 KB
/
variables.tf
File metadata and controls
65 lines (55 loc) · 1.62 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
variable "aws_region" {
description = "AWS region for all resources"
type = string
default = "us-east-1"
}
variable "project_name" {
description = "Project name used for resource naming"
type = string
default = "content-machine"
}
variable "environment" {
description = "Environment name (dev, staging, prod)"
type = string
default = "dev"
}
variable "telegram_bot_token" {
description = "Telegram Bot API token (will be stored in Secrets Manager)"
type = string
sensitive = true
}
variable "kie_api_key" {
description = "kie.ai API key for video generation (will be stored in Secrets Manager)"
type = string
sensitive = true
}
variable "video_duration" {
description = "Video duration in seconds"
type = number
default = 15
}
variable "kie_video_model" {
description = "kie.ai video model to use (sora-2-text-to-video, sora-2-pro-text-to-video, or kling-2.6/text-to-video)"
type = string
default = "sora-2-text-to-video"
}
variable "s3_lifecycle_days" {
description = "Number of days before S3 objects expire"
type = number
default = 7
}
variable "lambda_runtime" {
description = "Lambda runtime version"
type = string
default = "nodejs22.x"
}
variable "bedrock_model_id" {
description = "AWS Bedrock model inference profile ID for Claude"
type = string
default = "us.anthropic.claude-sonnet-4-5-20250929-v1:0"
}
variable "allowed_telegram_users" {
description = "List of allowed Telegram usernames (leave empty for open access)"
type = list(string)
default = []
}