FEATURES OPEN SOURCE ABOUT DOCS LOGIN REGISTER

aws_emr_instance_group

Provides an Elastic MapReduce Cluster Instance Group configuration. See Amazon Elastic MapReduce Documentation for more information.

~> NOTE: At this time, Instance Groups cannot be destroyed through the API nor web interface. Instance Groups are destroyed when the EMR Cluster is destroyed. Terraform will resize any Instance Group to zero when destroying the resource.

Example Usage

resource "aws_emr_cluster_instance_group" "task" {
  cluster_id     = "${aws_emr_cluster.tf-test-cluster.id}"
  instance_count = 1
  instance_type  = "m3.xlarge"
  name           = "my little instance group"
}

Argument Reference

The following arguments are supported:

ec2_attributes

Attributes for the Instance Group


See the source of this document at Terraform.io