-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariable.tf
More file actions
34 lines (34 loc) · 938 Bytes
/
Copy pathvariable.tf
File metadata and controls
34 lines (34 loc) · 938 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
variable "project_id" {
type = string
description = "The ID of the project in which to create resources."
default = "YOUR_PROJECT_ID"
}
variable "region" {
type = string
description = "The region in which to create resources."
default = "us-central1"
}
variable "billing_id" {
type = string
description = "The billing ID for the project."
default = "000000-000000-000000"
}
variable "my_email" {
type = string
description = "The email address of the user."
default = "your-email@gmail.com"
}
variable "wakeup_schedule" {
type = string
description = "The cron schedule for waking up the service."
default = "30 1-23/4 * * *"
}
variable "manual_instance_count" {
type = number
description = "Manual instance count."
default = null
}
variable "iap_client_id" {
type = string
description = "Client ID for Cloud Run Direct IAP"
}