-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
50 lines (42 loc) · 1.18 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
variable "app_components" {
type = list(object({
app_component_name = string
app_component_type = string
resources = list(object({
resource_name = string
resource_type = string
resource_identifier = string
resource_identifier_type = string
resource_region = string
}))
}))
description = "The application's app-components, including its resources"
}
variable "app_name" {
type = string
description = "The Application's name"
}
variable "s3_bucket_name" {
type = string
description = "S3 bucket name containing the statefile"
}
variable "s3_bucket_region" {
type = string
description = "S3 bucket region containing the statefile"
}
variable "s3_state_file_path" {
type = string
description = "S3 bucket path containing the statefile, e.g - path/to/statefile.tf"
}
variable "rto" {
type = number
description = "RTO across all failure metrics"
}
variable "rpo" {
type = number
description = "RPO across all failure metrics"
}
variable "arh_role_name" {
type = string
description = "Defines the role to be used by Resilience Hub"
}