-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathvars.tf
47 lines (39 loc) · 1.27 KB
/
vars.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
variable "env" {
description = "Environment (production/staging)"
type = string
}
variable "app_name" {
description = "Name of the app (kebab-case)"
type = string
}
variable "bucket_prefix" {
description = "Prefix for the bucket name. Since S3 bucket live in global scope, it's good prefix it with e.g. your org name"
type = string
}
variable "zone_domain" {
description = "The domain where the app lives (e.g. 'example.com' if the app lives at hello.example.com)"
type = string
}
variable "subdomain" {
description = "Subdomain where the app lives (e.g. 'hello' if the app lives at hello.example.com)"
type = string
}
variable "block_iframes" {
description = "Should add custom header blocking access via iframes?"
default = true
type = bool
}
variable "default_repo_branch_name" {
description = "Name of the default branch of the project repo"
default = "master"
type = string
}
variable "is_robots_indexing_allowed" {
description = "Should allow search engine indexing in production?"
default = true
type = bool
}
variable "serve_nested_index_html" {
description = "Applies to apps which build separate index.html files for sub-routes, e.g. using Gatsby SSG"
type = bool
}