-
Notifications
You must be signed in to change notification settings - Fork 9.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New Resource: aws_emr_instance_fleet (#14813)
Output from acceptance testing: ``` --- PASS: TestAccAWSEMRInstanceFleet_full (465.80s) --- PASS: TestAccAWSEMRInstanceFleet_ebsBasic (475.54s) --- PASS: TestAccAWSEMRInstanceFleet_disappears (486.69s) --- PASS: TestAccAWSEMRInstanceFleet_basic (523.79s) --- PASS: TestAccAWSEMRInstanceFleet_zero_count (559.72s) ```
- Loading branch information
Showing
5 changed files
with
1,058 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,364 @@ | ||
package aws | ||
|
||
import ( | ||
"fmt" | ||
"log" | ||
"strings" | ||
"time" | ||
|
||
"github.com/aws/aws-sdk-go/aws" | ||
"github.com/aws/aws-sdk-go/service/emr" | ||
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/resource" | ||
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" | ||
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/validation" | ||
) | ||
|
||
func resourceAwsEMRInstanceFleet() *schema.Resource { | ||
return &schema.Resource{ | ||
Create: resourceAwsEMRInstanceFleetCreate, | ||
Read: resourceAwsEMRInstanceFleetRead, | ||
Update: resourceAwsEMRInstanceFleetUpdate, | ||
Delete: resourceAwsEMRInstanceFleetDelete, | ||
Importer: &schema.ResourceImporter{ | ||
State: func(d *schema.ResourceData, meta interface{}) ([]*schema.ResourceData, error) { | ||
idParts := strings.Split(d.Id(), "/") | ||
if len(idParts) != 2 || idParts[0] == "" || idParts[1] == "" { | ||
return nil, fmt.Errorf("Unexpected format of ID (%q), expected cluster-id/fleet-id", d.Id()) | ||
} | ||
clusterID := idParts[0] | ||
resourceID := idParts[1] | ||
d.Set("cluster_id", clusterID) | ||
d.SetId(resourceID) | ||
return []*schema.ResourceData{d}, nil | ||
}, | ||
}, | ||
Schema: map[string]*schema.Schema{ | ||
"cluster_id": { | ||
Type: schema.TypeString, | ||
Required: true, | ||
ForceNew: true, | ||
}, | ||
"instance_type_configs": { | ||
Type: schema.TypeSet, | ||
Optional: true, | ||
ForceNew: true, | ||
Elem: &schema.Resource{ | ||
Schema: map[string]*schema.Schema{ | ||
"bid_price": { | ||
Type: schema.TypeString, | ||
Optional: true, | ||
ForceNew: true, | ||
}, | ||
"bid_price_as_percentage_of_on_demand_price": { | ||
Type: schema.TypeFloat, | ||
Optional: true, | ||
ForceNew: true, | ||
Default: 100, | ||
}, | ||
"configurations": { | ||
Type: schema.TypeSet, | ||
Optional: true, | ||
ForceNew: true, | ||
Elem: &schema.Resource{ | ||
Schema: map[string]*schema.Schema{ | ||
"classification": { | ||
Type: schema.TypeString, | ||
Optional: true, | ||
ForceNew: true, | ||
}, | ||
"properties": { | ||
Type: schema.TypeMap, | ||
Optional: true, | ||
ForceNew: true, | ||
Elem: schema.TypeString, | ||
}, | ||
}, | ||
}, | ||
}, | ||
"ebs_config": { | ||
Type: schema.TypeSet, | ||
Optional: true, | ||
Computed: true, | ||
ForceNew: true, | ||
Elem: &schema.Resource{ | ||
Schema: map[string]*schema.Schema{ | ||
"iops": { | ||
Type: schema.TypeInt, | ||
Optional: true, | ||
ForceNew: true, | ||
}, | ||
"size": { | ||
Type: schema.TypeInt, | ||
Required: true, | ||
ForceNew: true, | ||
}, | ||
"type": { | ||
Type: schema.TypeString, | ||
Required: true, | ||
ForceNew: true, | ||
ValidateFunc: validateAwsEmrEbsVolumeType(), | ||
}, | ||
"volumes_per_instance": { | ||
Type: schema.TypeInt, | ||
Optional: true, | ||
ForceNew: true, | ||
Default: 1, | ||
}, | ||
}, | ||
}, | ||
Set: resourceAwsEMRClusterEBSConfigHash, | ||
}, | ||
"instance_type": { | ||
Type: schema.TypeString, | ||
Required: true, | ||
ForceNew: true, | ||
}, | ||
"weighted_capacity": { | ||
Type: schema.TypeInt, | ||
Optional: true, | ||
ForceNew: true, | ||
Default: 1, | ||
}, | ||
}, | ||
}, | ||
Set: resourceAwsEMRInstanceTypeConfigHash, | ||
}, | ||
"launch_specifications": { | ||
Type: schema.TypeList, | ||
Optional: true, | ||
ForceNew: true, | ||
MaxItems: 1, | ||
Elem: &schema.Resource{ | ||
Schema: map[string]*schema.Schema{ | ||
"on_demand_specification": { | ||
Type: schema.TypeList, | ||
Optional: true, | ||
ForceNew: true, | ||
MinItems: 1, | ||
Elem: &schema.Resource{ | ||
Schema: map[string]*schema.Schema{ | ||
"allocation_strategy": { | ||
Type: schema.TypeString, | ||
Required: true, | ||
ForceNew: true, | ||
ValidateFunc: validation.StringInSlice(emr.OnDemandProvisioningAllocationStrategy_Values(), false), | ||
}, | ||
}, | ||
}, | ||
}, | ||
"spot_specification": { | ||
Type: schema.TypeList, | ||
Optional: true, | ||
ForceNew: true, | ||
MinItems: 1, | ||
Elem: &schema.Resource{ | ||
Schema: map[string]*schema.Schema{ | ||
"allocation_strategy": { | ||
Type: schema.TypeString, | ||
ForceNew: true, | ||
Required: true, | ||
ValidateFunc: validation.StringInSlice(emr.SpotProvisioningAllocationStrategy_Values(), false), | ||
}, | ||
"block_duration_minutes": { | ||
Type: schema.TypeInt, | ||
Optional: true, | ||
ForceNew: true, | ||
Default: 0, | ||
}, | ||
"timeout_action": { | ||
Type: schema.TypeString, | ||
Required: true, | ||
ForceNew: true, | ||
ValidateFunc: validation.StringInSlice(emr.SpotProvisioningTimeoutAction_Values(), false), | ||
}, | ||
"timeout_duration_minutes": { | ||
Type: schema.TypeInt, | ||
ForceNew: true, | ||
Required: true, | ||
}, | ||
}, | ||
}, | ||
}, | ||
}, | ||
}, | ||
}, | ||
"name": { | ||
Type: schema.TypeString, | ||
Optional: true, | ||
ForceNew: true, | ||
}, | ||
"target_on_demand_capacity": { | ||
Type: schema.TypeInt, | ||
Optional: true, | ||
Default: 0, | ||
}, | ||
"target_spot_capacity": { | ||
Type: schema.TypeInt, | ||
Optional: true, | ||
Default: 0, | ||
}, | ||
"provisioned_on_demand_capacity": { | ||
Type: schema.TypeInt, | ||
Computed: true, | ||
}, | ||
"provisioned_spot_capacity": { | ||
Type: schema.TypeInt, | ||
Computed: true, | ||
}, | ||
}, | ||
} | ||
} | ||
|
||
func resourceAwsEMRInstanceFleetCreate(d *schema.ResourceData, meta interface{}) error { | ||
conn := meta.(*AWSClient).emrconn | ||
|
||
addInstanceFleetInput := &emr.AddInstanceFleetInput{ | ||
ClusterId: aws.String(d.Get("cluster_id").(string)), | ||
} | ||
|
||
taskFleet := map[string]interface{}{ | ||
"name": d.Get("name"), | ||
"target_on_demand_capacity": d.Get("target_on_demand_capacity"), | ||
"target_spot_capacity": d.Get("target_spot_capacity"), | ||
"instance_type_configs": d.Get("instance_type_configs"), | ||
"launch_specifications": d.Get("launch_specifications"), | ||
} | ||
addInstanceFleetInput.InstanceFleet = readInstanceFleetConfig(taskFleet, emr.InstanceFleetTypeTask) | ||
|
||
log.Printf("[DEBUG] Creating EMR instance fleet params: %s", addInstanceFleetInput) | ||
resp, err := conn.AddInstanceFleet(addInstanceFleetInput) | ||
if err != nil { | ||
return fmt.Errorf("error adding EMR Instance Fleet: %w", err) | ||
} | ||
|
||
log.Printf("[DEBUG] Created EMR instance fleet finished: %#v", resp) | ||
if resp == nil { | ||
return fmt.Errorf("error creating instance fleet: no instance fleet returned") | ||
} | ||
d.SetId(*resp.InstanceFleetId) | ||
|
||
return nil | ||
} | ||
|
||
func resourceAwsEMRInstanceFleetRead(d *schema.ResourceData, meta interface{}) error { | ||
conn := meta.(*AWSClient).emrconn | ||
instanceFleets, err := fetchAllEMRInstanceFleets(conn, d.Get("cluster_id").(string)) | ||
if err != nil { | ||
log.Printf("[DEBUG] EMR doesn't have any Instance Fleet ") | ||
d.SetId("") | ||
return nil | ||
} | ||
|
||
fleet := findInstanceFleetById(instanceFleets, d.Id()) | ||
if fleet == nil { | ||
log.Printf("[DEBUG] EMR Instance Fleet (%s) not found, removing", d.Id()) | ||
d.SetId("") | ||
return nil | ||
} | ||
|
||
if err := d.Set("instance_type_configs", flatteninstanceTypeConfigs(fleet.InstanceTypeSpecifications)); err != nil { | ||
return fmt.Errorf("error setting instance_type_configs: %w", err) | ||
} | ||
|
||
if err := d.Set("launch_specifications", flattenLaunchSpecifications(fleet.LaunchSpecifications)); err != nil { | ||
return fmt.Errorf("error setting launch_specifications: %w", err) | ||
} | ||
d.Set("name", fleet.Name) | ||
d.Set("provisioned_on_demand_capacity", fleet.ProvisionedOnDemandCapacity) | ||
d.Set("provisioned_spot_capacity", fleet.ProvisionedSpotCapacity) | ||
d.Set("target_on_demand_capacity", fleet.TargetOnDemandCapacity) | ||
d.Set("target_spot_capacity", fleet.TargetSpotCapacity) | ||
return nil | ||
} | ||
|
||
func findInstanceFleetById(instanceFleets []*emr.InstanceFleet, fleetId string) *emr.InstanceFleet { | ||
for _, fleet := range instanceFleets { | ||
if fleet != nil && aws.StringValue(fleet.Id) == fleetId { | ||
return fleet | ||
} | ||
} | ||
return nil | ||
} | ||
|
||
func resourceAwsEMRInstanceFleetUpdate(d *schema.ResourceData, meta interface{}) error { | ||
conn := meta.(*AWSClient).emrconn | ||
|
||
log.Printf("[DEBUG] Modify EMR task fleet") | ||
|
||
modifyConfig := &emr.InstanceFleetModifyConfig{ | ||
InstanceFleetId: aws.String(d.Id()), | ||
TargetOnDemandCapacity: aws.Int64(int64(d.Get("target_on_demand_capacity").(int))), | ||
TargetSpotCapacity: aws.Int64(int64(d.Get("target_spot_capacity").(int))), | ||
} | ||
|
||
modifyInstanceFleetInput := &emr.ModifyInstanceFleetInput{ | ||
ClusterId: aws.String(d.Get("cluster_id").(string)), | ||
InstanceFleet: modifyConfig, | ||
} | ||
|
||
_, err := conn.ModifyInstanceFleet(modifyInstanceFleetInput) | ||
if err != nil { | ||
return fmt.Errorf("error modifying EMR Instance Fleet (%s): %w", d.Id(), err) | ||
} | ||
|
||
stateConf := &resource.StateChangeConf{ | ||
Pending: []string{emr.InstanceFleetStateProvisioning, emr.InstanceFleetStateBootstrapping, emr.InstanceFleetStateResizing}, | ||
Target: []string{emr.InstanceFleetStateRunning}, | ||
Refresh: instanceFleetStateRefresh(conn, d.Get("cluster_id").(string), d.Id()), | ||
Timeout: 75 * time.Minute, | ||
Delay: 10 * time.Second, | ||
MinTimeout: 30 * time.Second, | ||
} | ||
|
||
_, err = stateConf.WaitForState() | ||
if err != nil { | ||
return fmt.Errorf("error waiting for instance (%s) to terminate: %s", d.Id(), err) | ||
} | ||
|
||
return resourceAwsEMRInstanceFleetRead(d, meta) | ||
} | ||
|
||
func instanceFleetStateRefresh(conn *emr.EMR, clusterID, ifID string) resource.StateRefreshFunc { | ||
return func() (interface{}, string, error) { | ||
|
||
instanceFleets, err := fetchAllEMRInstanceFleets(conn, clusterID) | ||
if err != nil { | ||
return nil, "Not Found", err | ||
} | ||
|
||
fleet := findInstanceFleetById(instanceFleets, ifID) | ||
if fleet == nil { | ||
return nil, "Not Found", err | ||
} | ||
|
||
if fleet.Status == nil || fleet.Status.State == nil { | ||
log.Printf("[WARN] ERM Instance Fleet found, but without state") | ||
return nil, "Undefined", fmt.Errorf("undefined EMR Cluster Instance Fleet state") | ||
} | ||
|
||
return fleet, *fleet.Status.State, nil | ||
} | ||
} | ||
|
||
func resourceAwsEMRInstanceFleetDelete(d *schema.ResourceData, meta interface{}) error { | ||
log.Printf("[WARN] AWS EMR Instance Fleet does not support DELETE; resizing cluster to zero before removing from state") | ||
conn := meta.(*AWSClient).emrconn | ||
|
||
clusterId := d.Get("cluster_id").(string) | ||
|
||
modifyInstanceFleetInput := &emr.ModifyInstanceFleetInput{ | ||
ClusterId: aws.String(clusterId), | ||
InstanceFleet: &emr.InstanceFleetModifyConfig{ | ||
InstanceFleetId: aws.String(d.Id()), | ||
TargetOnDemandCapacity: aws.Int64(0), | ||
TargetSpotCapacity: aws.Int64(0), | ||
}, | ||
} | ||
|
||
_, err := conn.ModifyInstanceFleet(modifyInstanceFleetInput) | ||
if err != nil { | ||
return fmt.Errorf("error deleting/modifying EMR Instance Fleet (%s): %w", d.Id(), err) | ||
} | ||
|
||
return nil | ||
} |
Oops, something went wrong.