-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvariables.tf
More file actions
41 lines (34 loc) · 928 Bytes
/
variables.tf
File metadata and controls
41 lines (34 loc) · 928 Bytes
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
# Variables that should be defined in your root module or terraform.tfvars
variable "jit_client_id" {
description = "Jit API Client ID"
type = string
sensitive = true
}
variable "jit_secret" {
description = "Jit API Secret"
type = string
sensitive = true
}
variable "organization_root_id" {
description = "AWS Organization Root ID"
type = string
sensitive = true
}
variable "should_include_root_account" {
description = "Whether to include the root account in the monitoring."
type = bool
default = false
}
variable "regions_to_monitor" {
description = "AWS regions to monitor using Jit"
type = list(string)
}
variable "aws_region" {
description = "AWS region to deploy the integration to"
type = string
}
variable "resource_name_prefix" {
description = "Prefix for the resource name"
type = string
default = "JitOrg"
}