-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
35 lines (30 loc) · 944 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
variable "logs_retention" {
type = string
description = "Retention period in days to use, one of 7, 14, 30, 90 ."
default = "7"
}
variable "cl_plan" {
type = string
description = "Cloud Logs plan to use for AT data."
default = "standard"
}
variable "cos_plan" {
type = string
description = "COS plan to use for Cloud Logs buckets."
default = "standard"
}
variable "acct_mgr_admins_access_group_name" {
type = string
description = "Name for the watsonx Admin access group for the account"
default = "WATSONX-MGR-ADMIN"
}
variable "acct_mgr_admins_user_ids" {
type = list(string)
description = "Names of the users to add to the watsonx Admin access group - do not include account owner IBMid"
default = [""]
}
variable "use_cos_for_at" {
type = bool
description = "Also configure an activity tracker target and route to a cos bucket"
default = true
}