-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
50 lines (43 loc) · 685 Bytes
/
Copy pathvariables.tf
File metadata and controls
50 lines (43 loc) · 685 Bytes
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
variable project_name {
default = "goodwe2pvoutput"
type = string
}
variable aws_region {
type = string
default = "us-east-1"
}
variable aws_profile {
type=string
}
variable lambda_timeout {
type = number
default = 900
}
variable schedule_expression {
type = string
description = "How often to run the bot"
}
variable PVOUTPUT_DONATION_MODE {
type=string
}
variable PVOUTPUT_APIKEY {
type=string
}
variable PVOUTPUT_SYSTEMID {
type=string
}
variable GOODWE_USERNAME {
type=string
}
variable GOODWE_PASSWORD {
type=string
}
variable GOODWE_SYSTEMID {
type=string
}
variable SOC_ENABLE {
type=string
}
variable SOC_FIELD {
type=string
}