website: fix error in the Kinesis Firehose ElasticSearch example
"destination" was set to "redshift" by mistake.
This commit is contained in:
parent
11cd9b4ee9
commit
76ea6c59cd
|
@ -93,7 +93,7 @@ resource "aws_elasticsearch_domain" "test_cluster" {
|
||||||
|
|
||||||
resource "aws_kinesis_firehose_delivery_stream" "test_stream" {
|
resource "aws_kinesis_firehose_delivery_stream" "test_stream" {
|
||||||
name = "terraform-kinesis-firehose-test-stream"
|
name = "terraform-kinesis-firehose-test-stream"
|
||||||
destination = "redshift"
|
destination = "elasticsearch"
|
||||||
s3_configuration {
|
s3_configuration {
|
||||||
role_arn = "${aws_iam_role.firehose_role.arn}"
|
role_arn = "${aws_iam_role.firehose_role.arn}"
|
||||||
bucket_arn = "${aws_s3_bucket.bucket.arn}"
|
bucket_arn = "${aws_s3_bucket.bucket.arn}"
|
||||||
|
|
Loading…
Reference in New Issue