-
Notifications
You must be signed in to change notification settings - Fork 9.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Terraform supports for "Additional Info" field for EMR? #3158
Comments
Is Terraform working on this feature ?. If yes, any tentative release dates ? I need this --additional-info feature so that we can pass proxy information to EMR cluster. |
@DigitalPig Looks like its possible, since aws go sdk have that option: https://docs.aws.amazon.com/sdk-for-go/api/service/emr/#RunJobFlowInput |
Thanks @saravanan30erd. Any guess on how long it will take to get this feature? |
Thanks @saravanan30erd. What should I do If I want to use your changes before it gets officially released ? Any steps to build my own terraform linux executable with your changes ? |
issue #3158 add new argument additional_info in aws_emr_cluster
The |
This has been released in version 1.20.0 of the AWS provider. Please see the Terraform documentation on provider versioning or reach out if you need any assistance upgrading. |
Tested and it works great. Thank you again for your hard work! |
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 feel this issue should be reopened, we encourage creating a new issue linking back to this one for added context. Thanks! |
Continuing #1178
In our corporation, we need to add an additional line in the aws cli to start EMR cluster successufully.
--additional-info '{ "instanceAwsClientConfiguration": { "proxyPort": 8099, "proxyHost": "aws-proxy-prod.company.com" } }'
However, there is no way of adding this information into terraform field. I was advised to use
Configuration
field but that is for setup of EMR softwaresIs there a possibility to add this option in the terraform aws provider? Thank you!
The text was updated successfully, but these errors were encountered: