Your organization operates a multi-tier enterprise workload in Google Cloud using a custom Virtual Private Cloud (VPC) named `prod-vpc`. An existing ingress firewall rule named `allow-app-traffic` currently allows inbound TCP traffic on port 8080 from `10.2.0.0/16` to instances tagged `app-server`, evaluated at a priority of 1000. Due to a compliance update, you must modify this rule to meet three operational requirements:
1. Restrict the source IP range to `10.2.15.0/24`.
2. Ensure the firewall rule takes precedence over a newly added conflicting rule evaluated at priority 500.
3. Keep the target tag `app-server` intact while replacing the source range.
Which `gcloud` command should you execute to accomplish this operational requirement cleanly in a single step?
- gcloud compute firewall-rules update allow-app-traffic --source-ranges=10.2.15.0/24 --priority=200Cevap
- Bgcloud compute firewall-rules update allow-app-traffic --source-ranges=10.2.15.0/24 --priority=800
- Cgcloud compute firewall-rules create allow-app-traffic --source-ranges=10.2.15.0/24 --priority=200 --extend-subnet
- Dgcloud compute firewall-rules update allow-app-traffic --add-source-ranges=10.2.15.0/24 --priority=200