24 lines
500 B
Terraform
24 lines
500 B
Terraform
|
variable shell-script-path {
|
||
|
type = string
|
||
|
description = "Full path to script"
|
||
|
}
|
||
|
|
||
|
variable cron-expression {
|
||
|
type = string
|
||
|
description = "Cron expression for SSM maintenance window schedule"
|
||
|
}
|
||
|
|
||
|
variable instance-id {
|
||
|
type = string
|
||
|
description = "Id of Ec2 instance to execute the script"
|
||
|
}
|
||
|
|
||
|
variable description {
|
||
|
type = string
|
||
|
description = "Description of command to run"
|
||
|
}
|
||
|
|
||
|
variable schedule-name {
|
||
|
type = string
|
||
|
description = "Name of maintenance window. e.g. Daily0900UTC8"
|
||
|
}
|