-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
44 lines (37 loc) · 1.07 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
variable "location" {
description = "Default GCP zone"
default = "europe-west3-c"
type = string
}
variable "region" {
description = "GCP region"
default = "europe-west3"
type = string
}
variable "project" {
description = "GCP project name"
type = string
}
variable "source_project" {
description = "In case your GCP project already use IAP setup somewhere, create new one and set it in this variable"
type = string
default = null
}
variable "iap_brand_name" {
description = "Name used in OAuth consent screen - will be shown to users when logging in"
type = string
}
variable "support_email" {
description = "Support email used in OAuth consent screen - must be personal email or Google Group, that you are Owner of"
type = string
}
variable "allowed_users" {
description = "Users allowed to access IAP protected content"
type = list(string)
default = []
}
variable "iap_clients" {
description = "List containing IAP client names"
type = list(string)
default = []
}