-
Notifications
You must be signed in to change notification settings - Fork 3
/
variables.tf
42 lines (36 loc) · 911 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
variable "project_services" {
type = list(string)
default = [
"cloudresourcemanager.googleapis.com",
"iam.googleapis.com",
"logging.googleapis.com",
"dns.googleapis.com",
"run.googleapis.com",
"compute.googleapis.com"
]
description = "List of services to enable on the project."
}
variable "project" {
type = string
description = "Name of project"
}
variable "region" {
type = string
description = "Default region of project"
}
variable "registry" {
description = "Container registry e.g eu.gcr.io or us.gcr.io"
type = string
}
variable "image_name" {
description = "Name of the image to run on cloud run"
type = string
}
variable "image_version" {
type = string
description = "Image version to deploy"
}
variable "domain" {
type = string
description = "Your root domain without prefixes e.g example.com"
}