-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathvariables.tf
42 lines (40 loc) · 1.06 KB
/
variables.tf
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
variable "azure_region" {
description = "Azure region"
type = string
default = "eastus"
}
variable "name_prefix" {
description = "common prefix for naming Azure resources"
type = string
default = "anton-tf-"
}
variable "generative_model" {
description = "Generative model to use"
type = string
default = "gpt-35-turbo"
}
variable "embeddings_model" {
description = "Embeddings model to use"
type = string
default = "text-embedding-ada-002"
}
variable "generative_model_version" {
description = "Generative model version to use"
type = string
default = "0613"
}
variable "embeddings_model_version" {
description = "Embeddings model version to use"
type = string
default = "2"
}
variable "app_docker_image" {
description = "docker image to use for the web app. Image should expose port 80"
type = string
default = "antonum/llmchat"
}
variable "app_docker_tag" {
description = "docker image tag to use for the web app."
type = string
default = "latest"
}