github.com/vtorhonen/terraform@v0.9.0-beta2.0.20170307220345-5d894e4ffda7/examples/aws-cloudwatch-events/kinesis/variables.tf (about) 1 variable "aws_region" { 2 description = "The AWS region to create resources in." 3 default = "us-east-1" 4 } 5 6 variable "rule_name" { 7 description = "The name of the CloudWatch Event Rule" 8 default = "tf-example-cloudwatch-event-rule-for-kinesis" 9 } 10 11 variable "iam_role_name" { 12 description = "The name of the IAM Role" 13 default = "tf-example-iam-role-for-kinesis" 14 } 15 16 variable "target_name" { 17 description = "The name of the CloudWatch Event Target" 18 default = "tf-example-cloudwatch-event-target-for-kinesis" 19 } 20 21 variable "stream_name" { 22 description = "The name of the Kinesis Stream to send events to" 23 default = "tf-example-kinesis-stream" 24 }