-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
60 lines (49 loc) · 1.35 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
variable "project_id" {
description = "GCP project name"
}
variable "project_auth_file" {
description = "GCP Project auth file"
default = null
}
variable "region" {
description = "GCP deployment region"
}
variable "xdr_key" {
description = "Enter your Cortex XDR key"
}
variable "xdr_key_id" {
description = "Enter your Cortex XDR key ID"
}
variable "xdr_base_url" {
description = "Enter your Cortex XDR base URL"
}
variable "customer_id" {
description = "Enter your customer ID"
}
variable "customer_email" {
description = "Enter your email address."
}
variable "global_prefix" {
description = "Enter a naming prefix. This prefix will be prepended to all resources created."
}
variable "scheduler_time_zone" {
description = "Enter a valid time-zone for cloud scheduler (i.e. America/New_York)"
}
variable "service_account_email" {}
variable "cred_json" {
description = "The cred_json for the Google Admin Site API call"
# default = <<-EOF
# {
# "type": "service_account",
# "project_id": "",
# "private_key_id": "",
# "private_key": "",
# "client_email": "",
# "client_id": "",
# "auth_uri": "https://accounts.google.com/o/oauth2/auth",
# "token_uri": "https://oauth2.googleapis.com/token",
# "auth_provider_x509_cert_url": "https://www.googleapis.com/oauth2/v1/certs",
# "client_x509_cert_url": ""
# }
# EOF
}