Skip to content

Commit

Permalink
Merge pull request #6207 from DavidJFelix/patch-1
Browse files Browse the repository at this point in the history
docs: fix example code elastic_transcoder_preset
  • Loading branch information
bflad authored Oct 25, 2018
2 parents 555bba6 + bc66f1f commit 4824ad6
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions website/docs/r/elastic_transcoder_preset.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -18,19 +18,19 @@ resource "aws_elastictranscoder_preset" "bar" {
description = "Sample Preset"
name = "sample_preset"
audio = {
audio {
audio_packing_mode = "SingleTrack"
bit_rate = 96
channels = 2
codec = "AAC"
sample_rate = 44100
}
audio_codec_options = {
audio_codec_options {
profile = "AAC-LC"
}
video = {
video {
bit_rate = "1600"
codec = "H.264"
display_aspect_ratio = "16:9"
Expand All @@ -52,7 +52,7 @@ resource "aws_elastictranscoder_preset" "bar" {
ColorSpaceConversionMode = "None"
}
video_watermarks = {
video_watermarks {
id = "Terraform Test"
max_width = "20%"
max_height = "20%"
Expand All @@ -65,7 +65,7 @@ resource "aws_elastictranscoder_preset" "bar" {
target = "Content"
}
thumbnails = {
thumbnails {
format = "png"
interval = 120
max_width = "auto"
Expand Down

0 comments on commit 4824ad6

Please sign in to comment.