-
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
Add IPv6 support aws_lightsail_instance
#27699
Add IPv6 support aws_lightsail_instance
#27699
Conversation
* Add parent disappears test * Add disappears test
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.
LGTM 🚀.
% make testacc TESTARGS='-run=TestAccLightsailInstance_' PKG=lightsail ACCTEST_PARALLELISM=2
==> Checking that code complies with gofmt requirements...
TF_ACC=1 go test ./internal/service/lightsail/... -v -count 1 -parallel 2 -run=TestAccLightsailInstance_ -timeout 180m
=== RUN TestAccLightsailInstance_basic
=== PAUSE TestAccLightsailInstance_basic
=== RUN TestAccLightsailInstance_name
=== PAUSE TestAccLightsailInstance_name
=== RUN TestAccLightsailInstance_tags
=== PAUSE TestAccLightsailInstance_tags
=== RUN TestAccLightsailInstance_IPAddressType
=== PAUSE TestAccLightsailInstance_IPAddressType
=== RUN TestAccLightsailInstance_disappears
=== PAUSE TestAccLightsailInstance_disappears
=== CONT TestAccLightsailInstance_basic
=== CONT TestAccLightsailInstance_IPAddressType
--- PASS: TestAccLightsailInstance_basic (58.68s)
=== CONT TestAccLightsailInstance_tags
--- PASS: TestAccLightsailInstance_IPAddressType (89.10s)
=== CONT TestAccLightsailInstance_disappears
--- PASS: TestAccLightsailInstance_tags (70.97s)
=== CONT TestAccLightsailInstance_name
--- PASS: TestAccLightsailInstance_disappears (53.31s)
--- PASS: TestAccLightsailInstance_name (109.83s)
PASS
ok github.com/hashicorp/terraform-provider-aws/internal/service/lightsail 246.692s
% make testacc TESTARGS='-run=TestAccLightsailKeyPair_' PKG=lightsail ACCTEST_PARALLELISM=2
==> Checking that code complies with gofmt requirements...
TF_ACC=1 go test ./internal/service/lightsail/... -v -count 1 -parallel 2 -run=TestAccLightsailKeyPair_ -timeout 180m
=== RUN TestAccLightsailKeyPair_basic
=== PAUSE TestAccLightsailKeyPair_basic
=== RUN TestAccLightsailKeyPair_publicKey
=== PAUSE TestAccLightsailKeyPair_publicKey
=== RUN TestAccLightsailKeyPair_encrypted
=== PAUSE TestAccLightsailKeyPair_encrypted
=== RUN TestAccLightsailKeyPair_namePrefix
=== PAUSE TestAccLightsailKeyPair_namePrefix
=== CONT TestAccLightsailKeyPair_basic
=== CONT TestAccLightsailKeyPair_encrypted
--- PASS: TestAccLightsailKeyPair_basic (30.47s)
=== CONT TestAccLightsailKeyPair_publicKey
--- PASS: TestAccLightsailKeyPair_encrypted (30.92s)
=== CONT TestAccLightsailKeyPair_namePrefix
--- PASS: TestAccLightsailKeyPair_publicKey (28.17s)
--- PASS: TestAccLightsailKeyPair_namePrefix (29.01s)
PASS
ok github.com/hashicorp/terraform-provider-aws/internal/service/lightsail 64.342s
@brittandeyoung Thanks for the contribution 🎉 👏. |
This functionality has been released in v4.39.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
This pull request modifies the
aws_lightsail_instance
andaws_lightsail_instance_public_ports
resources to add support for ipv6. As a part of this, the bug which caused public ports not to provide a new resource with a new instance has been resolved.I also updated the
aws_lightsail_instance
andaws_lightsail_key_pair
resources to use the sharedwaitOperation
function.Relations
Closes #20680
Closes: #17588
References
Output from Acceptance Testing