2016-02-05 14:11:11 +01:00
|
|
|
variable "aws_region" {
|
|
|
|
description = "The AWS region to create resources in."
|
2016-09-22 13:49:09 +02:00
|
|
|
default = "us-east-1"
|
2016-02-05 14:11:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
variable "rule_name" {
|
|
|
|
description = "The name of the CloudWatch Event Rule"
|
2016-09-22 13:49:09 +02:00
|
|
|
default = "tf-example-cloudwatch-event-rule-for-sns"
|
2016-02-05 14:11:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
variable "target_name" {
|
|
|
|
description = "The name of the CloudWatch Event Target"
|
2016-09-22 13:49:09 +02:00
|
|
|
default = "tf-example-cloudwatch-event-target-for-sns"
|
2016-02-05 14:11:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
variable "sns_topic_name" {
|
|
|
|
description = "The name of the SNS Topic to send events to"
|
2016-09-22 13:49:09 +02:00
|
|
|
default = "tf-example-sns-topic"
|
2016-02-05 14:11:11 +01:00
|
|
|
}
|