Skip to content

Commit

Permalink
Merge pull request #4218 from HotelsDotCom/issue-4217
Browse files Browse the repository at this point in the history
[issue-4217] AWS EMR: Force new resource if any of the EC2 attributes has changed
  • Loading branch information
bflad authored Apr 17, 2018
2 parents 2b48eec + ac45a54 commit 0dd6dff
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions aws/resource_aws_emr_cluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -100,34 +100,42 @@ func resourceAwsEMRCluster() *schema.Resource {
"key_name": {
Type: schema.TypeString,
Optional: true,
ForceNew: true,
},
"subnet_id": {
Type: schema.TypeString,
Optional: true,
ForceNew: true,
},
"additional_master_security_groups": {
Type: schema.TypeString,
Optional: true,
ForceNew: true,
},
"additional_slave_security_groups": {
Type: schema.TypeString,
Optional: true,
ForceNew: true,
},
"emr_managed_master_security_group": {
Type: schema.TypeString,
Optional: true,
ForceNew: true,
},
"emr_managed_slave_security_group": {
Type: schema.TypeString,
Optional: true,
ForceNew: true,
},
"instance_profile": {
Type: schema.TypeString,
Required: true,
ForceNew: true,
},
"service_access_security_group": {
Type: schema.TypeString,
Optional: true,
ForceNew: true,
},
},
},
Expand Down

0 comments on commit 0dd6dff

Please sign in to comment.