-
Notifications
You must be signed in to change notification settings - Fork 21
/
var.tf
104 lines (85 loc) · 1.63 KB
/
var.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
variable "subscription-id" {
type = string
default = "25cc9009-2580-4987-936c-95aaab093023"
}
#virtual network variables
variable "region" {
type = string
default = "japaneast"
}
variable "ip-prefix" {
type = string
default = "10.99"
}
#end virtual network variables
variable "storage-account" {
type = string
default = "acadifytest"
}
variable "storage-account-container" {
type = string
default = "dfy"
}
variable "redis" {
type = string
default = "acadifyredis"
}
variable "psql-flexible" {
type = string
default = "acadifypsql"
}
variable "pgsql-user" {
type = string
default = "user"
}
variable "pgsql-password" {
type = string
default = "#QWEASDasdqwe"
}
variable "aca-env" {
type = string
default = "dify-aca-env"
}
variable "aca-loga" {
type = string
default = "dify-loga"
}
variable "isProvidedCert" {
type = bool
default = true
}
variable "aca-cert-path" {
type = string
default = "./certs/difycert.pfx"
}
variable "aca-cert-password" {
type = string
default = "password"
}
variable "aca-dify-customer-domain" {
type = string
default = "dify.nikadwang.com"
}
variable "aca-app-min-count" {
type = number
default = 0
}
variable "is_aca_enabled" {
type = bool
default = false
}
variable "dify-api-image" {
type = string
# default = "langgenius/dify-api:0.6.11"
default = "langgenius/dify-api:0.7.1"
}
variable "dify-sandbox-image" {
type = string
# default = "langgenius/dify-sandbox:0.2.1"
default = "langgenius/dify-sandbox:0.2.6"
}
variable "dify-web-image" {
type = string
# default = "langgenius/dify-web:0.6.11"
default = "langgenius/dify-web:0.7.1"
}