Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
Addresses Issue #735
[Docs]: Outdated documentation for aws_emr_cluster step and hadoop_jar_step variables
.Under the section [Enable Debug Logging(https://registry.terraform.io/providers/figma/aws-4-49-0/latest/docs/resources/emr_cluster#enable-debug-logging), step and hadoop_jar_step requires a list instead of a map.
It should be updated from:
To the following:
For step, this is also supported by the aws emr create-cluster documentation where
--step
requires a list of steps to be executed by the cluster.Error received when a map is submitted to the step variable:
![step_error](https://private-user-images.githubusercontent.com/52845474/324681687-e8cac70c-b3ca-438b-81e8-eaf9f90deb92.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3MzkyNzQzNDQsIm5iZiI6MTczOTI3NDA0NCwicGF0aCI6Ii81Mjg0NTQ3NC8zMjQ2ODE2ODctZThjYWM3MGMtYjNjYS00MzhiLTgxZTgtZWFmOWY5MGRlYjkyLnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNTAyMTElMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjUwMjExVDExNDA0NFomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPTBkY2ZlZTUwNGEyNTUyNzMzYTZhODgwZTBhZjNmYjFkZDAxYWMyMTRmNDkyMTdmOTQ4OWY3MzQ0ZTI5YzlmZmQmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.E6jGydzY_rWrcfinZduOvMtq8LHUA99ul5WTWYnUGYo)
Error received when a map is submitted to the hadoop_jar_step variable:
![hadoop_jar_step_error](https://private-user-images.githubusercontent.com/52845474/324681787-257ff944-1230-4f2d-ab8d-ccfa37133e80.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3MzkyNzQzNDQsIm5iZiI6MTczOTI3NDA0NCwicGF0aCI6Ii81Mjg0NTQ3NC8zMjQ2ODE3ODctMjU3ZmY5NDQtMTIzMC00ZjJkLWFiOGQtY2NmYTM3MTMzZTgwLnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNTAyMTElMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjUwMjExVDExNDA0NFomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPTk2MTZmNzFkODEyMDRiMmQ1ZjViNjQzMTU3NjY0ZmNlNzNhNjMxZGRmZjNlYTBjMGM5N2E4ZmEyYzE2ODU5MjQmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.Fta1Ey7NfYE9MDHkF0_TqHMB_QNQtMT2RJSMUXsVN78)
No CHANGELOG.md update as it is a documentation update.
Relations
Closes #735
References
https://docs.aws.amazon.com/cli/latest/reference/emr/create-cluster.html
Output from Acceptance Testing
Does not affect tests as it is a documentation update.