40 lines
1007 B
Terraform
40 lines
1007 B
Terraform
|
variable "stream-name" {
|
||
|
type = string
|
||
|
description = "Name of Kinesis Data Firehose delivery stream"
|
||
|
}
|
||
|
|
||
|
variable "firehose-kmskey-arn" {
|
||
|
type = string
|
||
|
description = "KMS Key arn for Firehose"
|
||
|
}
|
||
|
|
||
|
variable "dest-bucket-arn" {
|
||
|
type = string
|
||
|
description = "Destination S3 bucket ARN"
|
||
|
}
|
||
|
|
||
|
variable "dest-bucket-prefix" {
|
||
|
type = string
|
||
|
description = "S3 object prefix for this stream. Please do not start with / end with a /. For example, r53-log/acme.local/"
|
||
|
}
|
||
|
|
||
|
variable "dest-bucket-kmskey-arn" {
|
||
|
type = string
|
||
|
description = "KMS key ARN for destination bucket"
|
||
|
}
|
||
|
|
||
|
variable "source-cwlgroup-name" {
|
||
|
type = string
|
||
|
description = "Name of source CloudwatchLog group"
|
||
|
}
|
||
|
|
||
|
variable "cwl-region" {
|
||
|
type = string
|
||
|
description = "AWS region where Cloudwatch LogGroup resides. Needed for setting up cwlog-stream-role"
|
||
|
}
|
||
|
|
||
|
variable "enable-firehose-errorlog" {
|
||
|
type = bool
|
||
|
description = "Enable firehose errorlog"
|
||
|
default = false
|
||
|
}
|