-
Notifications
You must be signed in to change notification settings - Fork 5
/
sample.auto.tfvars
45 lines (42 loc) · 1.42 KB
/
sample.auto.tfvars
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
region = "ap-southeast-1"
azs = ["ap-southeast-1a", "ap-southeast-1b"]
vpc_private_subnets_cidrs = ["172.31.48.0/20", "172.31.64.0/20"]
vpc_private_subnets_names = ["private-48-1a", "private-64-1b"]
vpc_public_subnets_cidrs = ["172.31.0.0/20", "172.31.16.0/20"]
vpc_public_subnets_names = ["public-0-1a", "public-16-1b"]
llm_ec2_configs = [
{
llm_model = "gemma2:9b"
instance_type = "g5g.xlarge"
ami_id = ""
ebs_volume_gb = 200
app_port = 11434
},
{
llm_model = "qwen2:7b"
instance_type = "g5g.xlarge"
ami_id = ""
ebs_volume_gb = 200
app_port = 11434
},
# {
# llm_model = "llama3.1:8b"
# instance_type = "g5g.xlarge"
# ami_id = ""
# ebs_volume_gb = 200
# app_port = 11434
# },
]
create_api_gw = true
api_gw_disable_execute_endpoint = true
# api_gw_domain = "xx.xxxx.com"
# api_gw_domain_route53_zone = "xxxxx"
# api_gw_domain_ssl_cert_arn = "arn:aws:acm:ap-southeast-1:xxxx:certificate/xxxxx"
open_webui_task_cpu = 512
open_webui_task_mem = 1024
open_webui_task_count = 2
open_webui_port = 8080
open_webui_image_url = "xuyangbo/open-webui:v0.3.15"
# open_webui_domain = "yy.yyyy.com"
# open_webui_domain_route53_zone = "xxxxx"
# open_webui_domain_ssl_cert_arn = "arn:aws:acm:ap-southeast-1:xxxx:certificate/xxxxx"