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-kinesis"
|
2016-02-05 14:11:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
variable "iam_role_name" {
|
|
|
|
description = "The name of the IAM Role"
|
2016-09-22 13:49:09 +02:00
|
|
|
default = "tf-example-iam-role-for-kinesis"
|
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-kinesis"
|
2016-02-05 14:11:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
variable "stream_name" {
|
|
|
|
description = "The name of the Kinesis Stream to send events to"
|
2016-09-22 13:49:09 +02:00
|
|
|
default = "tf-example-kinesis-stream"
|
2016-02-05 14:11:11 +01:00
|
|
|
}
|