-
Notifications
You must be signed in to change notification settings - Fork 1.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
Creation of new variable configure_ip_masq controlling ip masq install #187
Creation of new variable configure_ip_masq controlling ip masq install #187
Conversation
CI Error:
I am making an educated guess that #186 will resolve the problem. |
@chrislovecnm Can you resolve conflicts? |
Yes I am OOO today |
25def67
to
e6c33fa
Compare
I am having issues creating a cluster from the beta provider. I will post my TF later or tomorrow, if I cannot figure it out. Please do not merge |
@aaron-lane @morgante the PR seems to be happy. Created a cluster off of this projects beta modules, and it worked :) . PTAL |
Aliased IP addresses do not require ip masquerading anymore. There are few use cases where we would need ip masq, but usually it is not recommended to install ip masquerading. This variable allows for fine gain control on the installation of ip masq as it was always installed via the network_policy variable previously. configure_ip_masq defaults to false. Fixes: terraform-google-modules#172
Adding new field 'configure_ip_masq' to public stub domain example and removing the same field from the private cluster example. Removed the integration control to check for ip masq in the private cluster as well.
@morgante / @aaron-lane PTAL |
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.
Note this is a breaking change, we will need to include an explanation in the release notes/migration guide.
@morgante / @aaron-lane can we get a merge? Maintaining three open PRs is some work rebasing them all the time. The autogen is nice, but it does not merge well at all |
@chrislovecnm I was just waiting for tests to pass. Merged. |
…masq Creation of new variable configure_ip_masq controlling ip masq install
Aliased IP addresses do not require ip masquerading anymore. There are few use cases where we would need ip masq, but usually it is not recommended to install ip masquerading. This variable allows
for fine gain control on the installation of ip masq as it was always installed via the
network_policy variable previously.
configure_ip_masq defaults to false.
Fixes: #172
TODO:
Added a new field 'configure_ip_masq' to public stub domain example. Removed the
integration control to check for ip masq in the private cluster as well.