-
-
Notifications
You must be signed in to change notification settings - Fork 24
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
feat: Add support for image_configuration block in serverless module #2
Conversation
…ation resource - it was added in aws provider 4.62.0
@bryantbiggs, could you please review it once again? |
@antonbabenko it looks like I don't have permission to run the checks/approve/etc. on this project FYI |
modules/serverless/main.tf
Outdated
for_each = length(var.image_configuration) > 0 ? [var.image_configuration] : [] | ||
|
||
content { | ||
image_uri = image_configuration.value.image_uri |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
image_uri = image_configuration.value.image_uri | |
image_uri = image_configuration.value.image_uri |
@bryantbiggs Indeed, some permissions were missing. It was fixed now. All other repositories were already fine. |
## [1.1.0](v1.0.0...v1.1.0) (2023-05-18) ### Features * Add support for image_configuration block in serverless module ([#2](#2)) ([4d29ee5](4d29ee5)) ### Bug Fixes * Correct auto-release configuration file ([#6](#6)) ([74847b1](74847b1)) * Update EMR studio service role policy to RequestTags on Create* ([#5](#5)) ([274efc3](274efc3))
This PR is included in version 1.1.0 🎉 |
I'm going to lock this pull request 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 related to this change, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further. |
Description
Add support for image_configuration block in aws_emrserverless_application resource - it was added in aws provider 4.62.0
Motivation and Context
Added possibility to use custom image in EMR serverless applications
Breaking Changes
It requires aws provider in at least 4.62 version