diff --git a/website/docs/r/emr_cluster.html.markdown b/website/docs/r/emr_cluster.html.markdown index 6120d3e4..43486b65 100644 --- a/website/docs/r/emr_cluster.html.markdown +++ b/website/docs/r/emr_cluster.html.markdown @@ -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 {