-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
31 lines (26 loc) · 908 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
variable "client_name" {
description = "Client name in the EC2 tag called Client"
type = string
}
variable "create_ec2_start_stop_iam_role" {
description = "Whether to create a new EC2 start stop IAM role"
type = bool
default = true
}
variable "ec2_start_stop_iam_role_arn" {
description = "ARN of EC2 start stop IAM role"
type = string
default = ""
}
variable "ec2_stop_cron_schedule_expression" {
type = string
description = "The scheduling expression for stopping EC2. For example, cron(0 20 * * ? *) or rate(5 minutes)"
}
variable "ec2_start_cron_schedule_expression" {
type = string
description = "The scheduling expression for starting EC2. For example, cron(0 20 * * ? *) or rate(5 minutes)"
}
variable "ec2_state_change_email" {
type = string
description = "Email id to send data to"
}