Skip to content

Commit

Permalink
Merge pull request hashicorp#3928 from WhileLoop/firehose-splunk-doc-…
Browse files Browse the repository at this point in the history
…cleanup

docs/resource/kinesis_firehose: fix example formatting in kinesis_firehose splunk destination documentation
  • Loading branch information
bflad authored Mar 27, 2018
2 parents dd97618 + dfc091f commit fccaaf2
Showing 1 changed file with 11 additions and 10 deletions.
21 changes: 11 additions & 10 deletions website/docs/r/kinesis_firehose_delivery_stream.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -212,22 +212,23 @@ resource "aws_kinesis_firehose_delivery_stream" "test_stream" {

```hcl
resource "aws_kinesis_firehose_delivery_stream" "test_stream" {
depends_on = ["aws_iam_role_policy.firehose"]
name = "terraform-kinesis-firehose-basicsplunktest-%d"
name = "terraform-kinesis-firehose-test-stream"
destination = "splunk"
s3_configuration {
role_arn = "${aws_iam_role.firehose.arn}"
bucket_arn = "${aws_s3_bucket.bucket.arn}"
buffer_size = 10
buffer_interval = 400
role_arn = "${aws_iam_role.firehose.arn}"
bucket_arn = "${aws_s3_bucket.bucket.arn}"
buffer_size = 10
buffer_interval = 400
compression_format = "GZIP"
}
splunk_configuration {
hec_endpoint = "https://http-inputs-mydomain.splunkcloud.com:443"
hec_token = "51D4DA16-C61B-4F5F-8EC7-ED4301342A4A"
hec_endpoint = "https://http-inputs-mydomain.splunkcloud.com:443"
hec_token = "51D4DA16-C61B-4F5F-8EC7-ED4301342A4A"
hec_acknowledgment_timeout = 600
hec_endpoint_type = "Event"
s3_backup_mode = "FailedEventsOnly"
hec_endpoint_type = "Event"
s3_backup_mode = "FailedEventsOnly"
}
}
```
Expand Down

0 comments on commit fccaaf2

Please sign in to comment.