You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(firewall): set IPs without prefix directly (#874)
This commit allows users to specify allowed IPs directly, without having
to awkwardly put an `/32` at the end.
If an IP is passed, we only allow this single IP (`/32` for IPv4, `/128`
for IPv6). This matches the behavior in Cloud Console.
Closes#807Closes#715
fix(firewall): unnecessary diff if user specified non-minimal IPv6
If the user specified an IPv6 which was not minimal (eg. `::0` instead
of `::`), the API would modify this to the minimal form. In the next run
terraform reports a diff and tries to update this over and over again.
We now do this normalization locally to avoid showing these diffs to
users.
Closes#870
Co-authored-by: Ettore Foti <ettorefoti@gmail.com>
0 commit comments