-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
49 lines (40 loc) · 1.08 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
43
44
45
46
47
48
49
variable "cloudflare_account_id" {
description = "Cloudflare account ID"
type = string
}
variable "project_name" {
description = "Name of the project"
type = string
}
variable "production_branch" {
description = "Name of the production branch"
type = string
}
variable "build_command" {
description = "Command to build the project"
type = string
}
variable "destination_dir" {
description = "Directory where the build command outputs the files"
type = string
}
variable "root_dir" {
description = "Root directory of the project"
type = string
}
variable "preview_environment_variables" {
description = "Environment variables for the preview environment"
type = map(string)
}
variable "production_environment_variables" {
description = "Environment variables for the production environment"
type = map(string)
}
variable "github_owner" {
description = "Owner of the GitHub repository"
type = string
}
variable "github_repo_name" {
description = "Name of the GitHub repository"
type = string
}