forked from aws-ia/terraform-aws-resiliencehub-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
35 lines (30 loc) · 828 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 "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_state_file_url" {
type = string
description = "An URL to s3-backend Terraform state-file"
}
variable "rto" {
type = number
description = "RTO across all failure metrics"
}
variable "rpo" {
type = number
description = "RPO across all failure metrics"
}