3

I am new to Terraform and have begun creating .tf files for my infrastructure which so far involves AWS S3 and IAM Roles. All good so far.

But now I need to create an AWS MediaConvert JobTemplate via Terraform and I can't find any reference for this on the Terraform's AWS provider documentation?

I don't know what to do at this point? Can I even use Terraform to create MediaConvert resources or do I need to use another tool/means?

CodeAndCats
  • 7,508
  • 9
  • 42
  • 60

2 Answers2

2

You can't as of right now (2019-07-02). But you can vote for them to implement it here:

https://github.com/terraform-providers/terraform-provider-aws/issues/7533

Philipp Kyeck
  • 18,402
  • 15
  • 86
  • 123
0

I made a mediaconvert job using aws lambda and boto3. The repo can be found here.

enter image description here So aws lambda is triggered by s3 put notification and the python lambda creates a mediaconvert job. Everything is written using Terraform.

Hope this helps someone.

ashraf minhaj
  • 504
  • 2
  • 14