website: fix error in the Kinesis Firehose ElasticSearch example

"destination" was set to "redshift" by mistake.
This commit is contained in:
Sean Knight 2016-08-29 17:00:38 -07:00 committed by Martin Atkins
parent 11cd9b4ee9
commit 76ea6c59cd
1 changed files with 1 additions and 1 deletions

View File

@ -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}"