Skip to content

Commit

Permalink
Update emr_cluster.html.markdown
Browse files Browse the repository at this point in the history
  • Loading branch information
jlieow committed Apr 23, 2024
1 parent 88c3e63 commit 5ce9dd7
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions website/docs/r/emr_cluster.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -238,15 +238,19 @@ resource "aws_emr_instance_fleet" "task" {
resource "aws_emr_cluster" "example" {
# ... other configuration ...
step {
action_on_failure = "TERMINATE_CLUSTER"
name = "Setup Hadoop Debugging"
step = [
{
action_on_failure = "TERMINATE_CLUSTER"
name = "Setup Hadoop Debugging"
hadoop_jar_step {
jar = "command-runner.jar"
args = ["state-pusher-script"]
hadoop_jar_step = [
{
jar = "command-runner.jar"
args = ["state-pusher-script"]
}
]
}
}
]
# Optional: ignore outside changes to running cluster steps
lifecycle {
Expand Down

0 comments on commit 5ce9dd7

Please sign in to comment.