You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* aws_elastictranscoder_preset.desktop_video: Error creating Elastic Transcoder Preset: ValidationException: When you specify a value for MaxFrameRate, you must also specify 'FrameRate':'Auto'. Either change the value of FrameRate or remove the MaxFrameRate object, and resubmit the request.
status code: 400, request id: f70b50ff-a1e7-11e6-8ba6-0f0748938856
MaxFrameRate will default to 30 if you do not pass a value, according to the AWS docs. So terraform does not need to enforce this setting to be default of 30.
The text was updated successfully, but these errors were encountered:
I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues.
If you have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further.
ghost
locked and limited conversation to collaborators
Apr 17, 2020
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
When using a
aws_elastictranscoder_preset
we want to be able to set "FrameRate" to a static frame rate, and not use MaxFrameRate.According to the AWS docs, this is accomplished by simply not passing MaxFrameRate. However terraform defaults MaxFrameRate to 30:
terraform/builtin/providers/aws/resource_aws_elastic_transcoder_preset.go
Lines 213 to 218 in 351c6be
This causes the following API error on apply:
MaxFrameRate will default to 30 if you do not pass a value, according to the AWS docs. So terraform does not need to enforce this setting to be default of 30.
The text was updated successfully, but these errors were encountered: