-
Notifications
You must be signed in to change notification settings - Fork 8
/
variables.tf
53 lines (44 loc) · 1023 Bytes
/
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
43
44
45
46
47
48
49
50
51
52
53
variable "gcp_project_id" {
description = "The project to deploy the cluster in"
type = string
}
variable "gcp_region" {
type = string
}
variable "gcp_zone" {
description = "All GCP resources will be launched in this Zone."
type = string
}
variable "github_organization" {
type = string
default = "e2b-dev"
}
variable "github_repository" {
type = string
default = "agentboard"
}
variable "vercel_project" {
type = string
default = "agentboard"
}
variable "vercel_team" {
type = string
default = "e2b"
}
variable "prefix" {
type = string
description = "The prefix to use for all resources in this module"
default = "e2b-"
}
variable "labels" {
description = "The labels to attach to resources created by this module"
type = map(string)
default = {
"app" = "e2b"
"terraform" = "true"
}
}
variable "terraform_state_bucket" {
description = "The name of the bucket to store terraform state in"
type = string
}