Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support EC2 Partition Placement Groups #7754

Closed
antonio-osorio opened this issue Feb 28, 2019 · 7 comments · Fixed by #15360
Closed

Support EC2 Partition Placement Groups #7754

antonio-osorio opened this issue Feb 28, 2019 · 7 comments · Fixed by #15360
Labels
enhancement Requests to existing resources that expand the functionality or scope.
Milestone

Comments

@antonio-osorio
Copy link

antonio-osorio commented Feb 28, 2019

Community Note

  • Please vote on this issue by adding a 👍 reaction to the original issue to help the community and maintainers prioritize this request
  • Please do not leave "+1" or "me too" comments, they generate extra noise for issue followers and do not help prioritize the request
  • If you are interested in working on this issue or have submitted a pull request, please leave a comment

Description

Please, add support for specifying the number of partitions on ec2 partition placement groups and for being able to launch instances into a specific partition.

New or Affected Resource(s)

  • aws_placement_group
  • aws_instance

Potential Terraform Configuration

resource "aws_placement_group" "placement_group_test" {
  name     = "my-placement-group"
  strategy = "partition"
  partition_count = 7
}
resource "aws_instance" "instance_test" {
  name     = "my-instance"
  ...
  placement_group = "my-placement-group"
  placement_partition_number = 3
}

or

resource "aws_instance" "instance_test" {
  name     = "my-instance"
  ...
  placement_group {
   name = "my-placement-group"
   partition_number = 3
  }
}

References

@antonio-osorio antonio-osorio added the enhancement Requests to existing resources that expand the functionality or scope. label Feb 28, 2019
@alanbrent
Copy link

Looks like #7777 is yet another competing PR for this issue. We'd love to start using this resource, is there any timeline here?

@sean-
Copy link
Contributor

sean- commented Sep 25, 2020

And another PR that addresses this, but is more limited in its scope, is #15360 . If folks here are interested, a 👍 on the PR may help with getting this issue resolved.

@qwinkler
Copy link

qwinkler commented Dec 7, 2020

Any updates?

@yuraymondl
Copy link

Can we get an update on this?

1 similar comment
@hansh0801
Copy link

Can we get an update on this?

ewbankkit added a commit that referenced this issue Oct 13, 2021
resource/aws_placement_group: add support for the attribute partition count
@github-actions github-actions bot added this to the v3.63.0 milestone Oct 13, 2021
@github-actions
Copy link

This functionality has been released in v3.63.0 of the Terraform AWS Provider. Please see the Terraform documentation on provider versioning or reach out if you need any assistance upgrading.

For further feature requests or bug reports with this functionality, please create a new GitHub issue following the template. Thank you!

@github-actions
Copy link

github-actions bot commented Jun 2, 2022

I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues.
If you have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further.

@github-actions github-actions bot locked as resolved and limited conversation to collaborators Jun 2, 2022
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.