-
Notifications
You must be signed in to change notification settings - Fork 9.6k
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
provider/aws: Allow IPv6/IPv4 addresses to coexist #13702
Conversation
ae417f0
to
62acf59
Compare
I was unable to figure out how to get |
@stack72 You seem like a person that knows the AWS code well. Can you give me your thoughts on this PR? |
62acf59
to
eae9157
Compare
@mbfrahry @grubernaut I rebased this onto master to bring it up-to-date again. Can I get one of you to give this a review? |
Fix an issue when trying to get a public IPv4 address and a public IPv6 address that results in the following error: Error launching source instance: InvalidParameterCombination: Network interfaces and an instance-level IPv6 address count may not be specified on the same request To fix, in situations where we want a IPv6 addresses AND we need to manually specify network interfaces on the instance, create the IPv6 addresses on the network interface that we're creating rather than on the instance itself. Fixes hashicorp#13250
eae9157
to
7fac1ab
Compare
Hey @bryanburgers, thanks for the contribution! In order to run acceptance tests, the
|
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, thanks!
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. |
Fix an issue when trying to get a public IPv4 address and a public IPv6
address that results in the following error:
To fix, in situations where we want a IPv6 addresses AND we need to
manually specify network interfaces on the instance, create the IPv6
addresses on the network interface that we're creating rather than on
the instance itself.
Fixes #13250