Skip to content

Commit 6557476

Browse files
authored
Merge pull request #29859 from tv2/b-audio_normalization_and_remix_not_computed
Audio normalization and remix not computed
2 parents 2ed9ee3 + be0907c commit 6557476

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.changelog/29859.txt

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
```release-note:bug
2+
resource/aws_medialive_channel: Removed `Compute` flag from `audio_normalization_settings` and `remix_settings` in `audio_descriptions`
3+
```

internal/service/medialive/channel_encoder_settings_schema.go

-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ func channelEncoderSettingsSchema() *schema.Schema {
3232
"audio_normalization_settings": {
3333
Type: schema.TypeList,
3434
Optional: true,
35-
Computed: true,
3635
MaxItems: 1,
3736
Elem: &schema.Resource{
3837
Schema: map[string]*schema.Schema{
@@ -502,7 +501,6 @@ func channelEncoderSettingsSchema() *schema.Schema {
502501
"remix_settings": {
503502
Type: schema.TypeList,
504503
Optional: true,
505-
Computed: true,
506504
MaxItems: 1,
507505
Elem: &schema.Resource{
508506
Schema: map[string]*schema.Schema{

0 commit comments

Comments
 (0)