-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
27 lines (23 loc) · 968 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
variable "bucket_name" {
type = string
description = "Name to be used for GCS bucket to which Worklytics data will be exported (eg 'acme-co-worklytics-export')."
}
variable "worklytics_tenant_sa_email" {
type = string
description = "Email address of your Worklytics tenant's service account (obtain from Worklytics App)."
}
variable "worklytics_host" {
type = string
description = "host of worklytics instance where tenant resides. (e.g. app.worklytics.co for prod; but may differ for dev/staging)"
default = "app.worklytics.co"
}
variable "todos_as_outputs" {
type = bool
description = "whether to render TODOs as outputs (former useful if you're using Terraform Cloud/Enterprise, or somewhere else where the filesystem is not readily accessible to you)"
default = false
}
variable "todos_as_local_files" {
type = bool
description = "whether to render TODOs as flat files"
default = true
}