A cloud administrator is managing firewall configurations for a Google Cloud custom VPC network. The network currently has two ingress firewall rules applied to virtual machines with the target network tag `db-server`:
- Rule `rule-allow-internal`: Direction INGRESS, Action ALLOW, IP protocol/port `tcp:5432`, Source IP ranges `10.150.0.0/16`, Priority 800.
- Rule `rule-deny-external`: Direction INGRESS, Action DENY, IP protocol/port `tcp:5432`, Source IP ranges `0.0.0.0/0`, Priority 300.
Database clients operating within the `10.150.0.0/16` subnet report that their connections to port 5432 on the `db-server` instances are failing. How should the administrator modify the firewall rules to allow access from `10.150.0.0/16` while continuing to block all other traffic on port 5432?
- Modify `rule-allow-internal` to have a priority of 200 so that its evaluation takes precedence over `rule-deny-external`.Answer
- BModify `rule-allow-internal` to have a priority of 1000 so that its higher numerical value overrides `rule-deny-external`.
- CAssign the IAM role `roles/compute.networkAdmin` to the database client instances so they inherit explicit firewall bypass permissions.
- DAssign the primitive `Owner` role to the target virtual machines so they ignore project-level deny rules.