Skip to content

Commit

Permalink
cherry pick and merge dc681c3
Browse files Browse the repository at this point in the history
  • Loading branch information
bflad authored and c4po committed Jul 22, 2020
1 parent 8b528ee commit b0ebe49
Show file tree
Hide file tree
Showing 5 changed files with 503 additions and 1,562 deletions.
11 changes: 8 additions & 3 deletions aws/resource_aws_appautoscaling_scheduled_action_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -256,9 +256,14 @@ resource "aws_emr_cluster" "hoge" {
instance_profile = "${aws_iam_instance_profile.instance_profile.arn}"
}
master_instance_type = "c4.large"
core_instance_type = "c4.large"
core_instance_count = 2
master_instance_group {
instance_type = "c4.large"
}
core_instance_group {
instance_count = 2
instance_type = "c4.large"
}
tags = {
role = "rolename"
Expand Down
11 changes: 8 additions & 3 deletions aws/resource_aws_appautoscaling_target_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -345,9 +345,14 @@ resource "aws_emr_cluster" "tf-test-cluster" {
instance_profile = "${aws_iam_instance_profile.emr_profile.arn}"
}
master_instance_type = "m3.xlarge"
core_instance_type = "m3.xlarge"
core_instance_count = 2
master_instance_group {
instance_type = "m3.xlarge"
}
core_instance_group {
instance_count = 2
instance_type = "m3.xlarge"
}
tags = {
role = "rolename"
Expand Down
Loading

0 comments on commit b0ebe49

Please sign in to comment.