-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
61 lines (50 loc) · 1.86 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
61
# Input Variables
# https://www.terraform.io/language/values/variables
variable "billing_account" {
description = "The alphanumeric ID of the billing account this project belongs to"
type = string
default = "01C550-A2C86B-B8F16B"
}
# The google_cloud_identity_group resource requires this if you are using User ADCs (Application Default Credentials).
# This is only needed during bootstrapping.
# variable "billing_project" {
# description = "The quota project to send in `user_project_override`, used for all requests sent from the provider. If set on a resource that supports sending the resource project, this value will supersede the resource project. This field is ignored if `user_project_override` is set to false or unset"
# type = string
# }
variable "billing_users_group_id" {
description = "The numeric ID of the billing users group"
type = string
default = "03dy6vkm4a7ag9g"
}
variable "cis_2_2_logging_sink_project_id" {
description = "The CIS 2.2 logging sink benchmark project ID"
type = string
}
variable "datadog_api_key" {
description = "Datadog API key"
type = string
sensitive = true
}
variable "datadog_app_key" {
description = "Datadog APP key"
type = string
sensitive = true
}
variable "enable_datadog" {
description = "Enable Datadog integration"
type = bool
default = false
}
variable "environment" {
description = "The environment suffix for example: `sb` (Sandbox), `nonprod` (Non-Production), `prod` (Production)"
type = string
default = "sb"
}
variable "folder_id" {
description = "The numeric ID of the folder this project should be created under. Only one of `org_id` or `folder_id` may be specified"
type = string
}
variable "workload_identity_pool_name" {
description = "The workload identity pool name"
type = string
}