mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-23 15:12:57 -06:00
c6beaa7ce8
Signed-off-by: Valentin Pichard <valentin.pichard@corp.ovh.com>
25 lines
669 B
HCL
25 lines
669 B
HCL
variable "aws_region" {
|
|
description = "The AWS region to create resources in."
|
|
default = "us-east-1"
|
|
}
|
|
|
|
variable "rule_name" {
|
|
description = "The name of the CloudWatch Event Rule"
|
|
default = "tf-example-cloudwatch-event-rule-for-kinesis"
|
|
}
|
|
|
|
variable "iam_role_name" {
|
|
description = "The name of the IAM Role"
|
|
default = "tf-example-iam-role-for-kinesis"
|
|
}
|
|
|
|
variable "target_name" {
|
|
description = "The name of the CloudWatch Event Target"
|
|
default = "tf-example-cloudwatch-event-target-for-kinesis"
|
|
}
|
|
|
|
variable "stream_name" {
|
|
description = "The name of the Kinesis Stream to send events to"
|
|
default = "tf-example-kinesis-stream"
|
|
}
|