-
Notifications
You must be signed in to change notification settings - Fork 9.2k
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
fix: add missing 'id' values in pool map (#32106) #32133
fix: add missing 'id' values in pool map (#32106) #32133
Conversation
%make testacc TESTS=TestAccIPAMPoolsDataSource PKG=ec2 ==> Checking that code complies with gofmt requirements... TF_ACC=1 go test ./internal/service/ec2/... -v -count 1 -parallel 20 -run='TestAccIPAMPoolsDataSource' -timeout 180m === RUN TestAccIPAMPoolsDataSource_basic === PAUSE TestAccIPAMPoolsDataSource_basic === RUN TestAccIPAMPoolsDataSource_empty === PAUSE TestAccIPAMPoolsDataSource_empty === CONT TestAccIPAMPoolsDataSource_basic === CONT TestAccIPAMPoolsDataSource_empty --- PASS: TestAccIPAMPoolsDataSource_empty (9.80s) --- PASS: TestAccIPAMPoolsDataSource_basic (79.66s) PASS ok github.com/hashicorp/terraform-provider-aws/internal/service/ec2 88.286s
Community NoteVoting for Prioritization
For Submitters
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Welcome @trc-ikeskin 👋
It looks like this is your first Pull Request submission to the Terraform AWS Provider! If you haven’t already done so please make sure you have checked out our CONTRIBUTOR guide and FAQ to make sure your contribution is adhering to best practice and has all the necessary elements in place for a successful approval.
Also take a look at our FAQ which details how we prioritize Pull Requests for inclusion.
Thanks again, and welcome to the community! 😃
@justinretzolk Any maintainers available to implement this fix? |
Hey @trc-ikeskin 👋 Thank you for checking in on this! Unfortunately I can't provide an ETA on when this will be reviewed/merged due to the potential of shifting priorities. We prioritize by count of 👍 reactions and a few other things (more information on our prioritization guide if you're interested). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
1 Small comment in the changelog but not big enough of a deal to block. Note the website docs already contained id
and not the (now removed) ipam_pool_id
so no changes required there
Thanks for finding, reporting, and fixing this bug! And thanks for your patience!
$ make testacc TESTS=TestAccIPAMPoolsDataSource PKG=ec2
=== RUN TestAccIPAMPoolsDataSource_basic
=== PAUSE TestAccIPAMPoolsDataSource_basic
=== RUN TestAccIPAMPoolsDataSource_empty
=== PAUSE TestAccIPAMPoolsDataSource_empty
=== CONT TestAccIPAMPoolsDataSource_basic
=== CONT TestAccIPAMPoolsDataSource_empty
--- PASS: TestAccIPAMPoolsDataSource_empty (20.09s)
--- PASS: TestAccIPAMPoolsDataSource_basic (151.88s)
PASS
ok github.com/hashicorp/terraform-provider-aws/internal/service/ec2 154.091s
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM 🚀.
% make testacc TESTARGS='-run=TestAccIPAMPoolsDataSource_basic' PKG=ec2
==> Checking that code complies with gofmt requirements...
TF_ACC=1 go test ./internal/service/ec2/... -v -count 1 -parallel 20 -run=TestAccIPAMPoolsDataSource_basic -timeout 360m
=== RUN TestAccIPAMPoolsDataSource_basic
=== PAUSE TestAccIPAMPoolsDataSource_basic
=== CONT TestAccIPAMPoolsDataSource_basic
--- PASS: TestAccIPAMPoolsDataSource_basic (78.16s)
PASS
ok github.com/hashicorp/terraform-provider-aws/internal/service/ec2 84.132s
@trc-ikeskin Thanks for the contribution 🎉 👏. |
This functionality has been released in v5.24.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! |
I'm going to lock this pull request because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. |
Description
Add missing values for 'id' attribute for IPAM pools returned by the aws_vpc_ipam_pools data source
Relations
Closes #32106
References
Output from Acceptance Testing