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 aws_vpc_ipam cascade for easier deletes #23973

Merged
merged 1 commit into from
Apr 1, 2022
Merged

support aws_vpc_ipam cascade for easier deletes #23973

merged 1 commit into from
Apr 1, 2022

Conversation

AurelienNober
Copy link
Contributor

@AurelienNober AurelienNober commented Mar 31, 2022

Community Note

  • Please vote on this pull request by adding a 👍 reaction to the original pull request comment to help the community and maintainers prioritize this request
  • Please do not leave "+1" or other comments that do not add relevant new information or questions, they generate extra noise for pull request followers and do not help prioritize the request

Closes #23714

@github-actions github-actions bot added documentation Introduces or discusses updates to documentation. service/ec2 Issues and PRs that pertain to the ec2 service. tests PRs: expanded test coverage. Issues: expanded coverage, enhancements to test infrastructure. size/M Managed by automation to categorize the size of a PR. needs-triage Waiting for first response or review from a maintainer. labels Mar 31, 2022
@AurelienNober AurelienNober changed the title [WIP] - support aws_vpc_ipam cascade for easier deletes [WIP] - support aws_vpc_ipam cascade for easier deletes Closes #23714 Mar 31, 2022
@AurelienNober AurelienNober changed the title [WIP] - support aws_vpc_ipam cascade for easier deletes Closes #23714 [WIP] - support aws_vpc_ipam cascade for easier deletes Mar 31, 2022
Copy link

@github-actions github-actions bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Welcome @AurelienNober 👋

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 CONTRIBUTING 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! 😃

@AurelienNober AurelienNober changed the title [WIP] - support aws_vpc_ipam cascade for easier deletes support aws_vpc_ipam cascade for easier deletes Mar 31, 2022
@justinretzolk justinretzolk added enhancement Requests to existing resources that expand the functionality or scope. and removed needs-triage Waiting for first response or review from a maintainer. labels Mar 31, 2022
.changelog/23973.txt Outdated Show resolved Hide resolved
Copy link
Collaborator

@drewmullen drewmullen left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

$ export AWS_DEFAULT_REGION=us-east-1
$ export AWS_ALTERNATE_REGION=us-west-2
$ make testacc TESTARGS="-run=TestAccVPCIpam_" PKG_NAME="./internal/service/ec2"
==> Checking that code complies with gofmt requirements...
TF_ACC=1 go test ././internal/service/ec2/... -v -count 1 -parallel 20  -run=TestAccVPCIpam_ -timeout 180m
=== RUN   TestAccVPCIpam_ByoipIPv6
    vpc_byoip_test.go:21: Environment variable IPAM_BYOIP_IPV6_MESSAGE, IPAM_BYOIP_IPV6_SIGNATURE, or IPAM_BYOIP_IPV6_PROVISIONED_CIDR is not set
--- SKIP: TestAccVPCIpam_ByoipIPv6 (0.00s)
=== RUN   TestAccVPCIpam_basic
=== PAUSE TestAccVPCIpam_basic
=== RUN   TestAccVPCIpam_modify
=== PAUSE TestAccVPCIpam_modify
=== RUN   TestAccVPCIpam_cascade
=== PAUSE TestAccVPCIpam_cascade
=== RUN   TestAccVPCIpam_tags
=== PAUSE TestAccVPCIpam_tags
=== CONT  TestAccVPCIpam_basic
=== CONT  TestAccVPCIpam_tags
=== CONT  TestAccVPCIpam_cascade
=== CONT  TestAccVPCIpam_modify
--- PASS: TestAccVPCIpam_basic (34.73s)
--- PASS: TestAccVPCIpam_cascade (41.33s)
--- PASS: TestAccVPCIpam_tags (55.83s)
--- PASS: TestAccVPCIpam_modify (71.13s)
PASS
ok  	github.com/hashicorp/terraform-provider-aws/internal/service/ec2	74.362s

Looks good to me after the small update to the change log!

Thanks for the contribution and great work!

Copy link
Contributor

@ewbankkit ewbankkit left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM 🚀.

% make testacc TESTS=TestAccVPCIpam_ PKG=ec2 ACCTEST_PARALLELISM=2
==> Checking that code complies with gofmt requirements...
TF_ACC=1 go test ./internal/service/ec2/... -v -count 1 -parallel 2 -run='TestAccVPCIpam_'  -timeout 180m
=== RUN   TestAccVPCIpam_ByoipIPv6
    vpc_byoip_test.go:21: Environment variable IPAM_BYOIP_IPV6_MESSAGE, IPAM_BYOIP_IPV6_SIGNATURE, or IPAM_BYOIP_IPV6_PROVISIONED_CIDR is not set
--- SKIP: TestAccVPCIpam_ByoipIPv6 (0.00s)
=== RUN   TestAccVPCIpam_basic
=== PAUSE TestAccVPCIpam_basic
=== RUN   TestAccVPCIpam_modify
=== PAUSE TestAccVPCIpam_modify
=== RUN   TestAccVPCIpam_cascade
=== PAUSE TestAccVPCIpam_cascade
=== RUN   TestAccVPCIpam_tags
=== PAUSE TestAccVPCIpam_tags
=== CONT  TestAccVPCIpam_basic
=== CONT  TestAccVPCIpam_cascade
--- PASS: TestAccVPCIpam_basic (32.83s)
=== CONT  TestAccVPCIpam_tags
--- PASS: TestAccVPCIpam_cascade (57.63s)
=== CONT  TestAccVPCIpam_modify
--- PASS: TestAccVPCIpam_tags (50.56s)
--- PASS: TestAccVPCIpam_modify (63.53s)
PASS
ok  	github.com/hashicorp/terraform-provider-aws/internal/service/ec2	124.857s

@ewbankkit
Copy link
Contributor

@AurelienNober Thanks for the contribution 🎉 👏.

@ewbankkit ewbankkit merged commit 98eb78c into hashicorp:main Apr 1, 2022
@github-actions github-actions bot added this to the v4.9.0 milestone Apr 1, 2022
@github-actions
Copy link

github-actions bot commented Apr 7, 2022

This functionality has been released in v4.9.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 May 9, 2022

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.
If you have found a problem that seems related to this change, 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 May 9, 2022
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
documentation Introduces or discusses updates to documentation. enhancement Requests to existing resources that expand the functionality or scope. service/ec2 Issues and PRs that pertain to the ec2 service. size/M Managed by automation to categorize the size of a PR. tests PRs: expanded test coverage. Issues: expanded coverage, enhancements to test infrastructure.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

feature: support aws_vpc_ipam cascade for easier deletes
4 participants