
Answer-first summary for fast verification
Answer: Allow inbound traffic on port 443 for the web tier from any IP., Permit the database tier to receive inbound traffic on port 1433 only from the web tier's security group.
To prioritize security for a two-tier web application, the following configurations should be made: 1. **Option A**: Configure the security group for the web tier to allow inbound traffic on port 443 (HTTPS) from any IP (0.0.0.0/0). This ensures that the web tier can accept secure connections from the internet. 2. **Option C**: Configure the security group for the database tier to allow inbound traffic on port 1433 (the default port for Microsoft SQL Server) from the security group of the web tier. This setup ensures that the database tier only accepts traffic from the web tier, enhancing security by restricting access to the database server.
Author: LeetQuiz Editorial Team
Ultimate access to all questions.
How should a solutions architect configure security groups for a two-tier web application with a public-facing web tier and a private database tier, prioritizing security?
A
Allow inbound traffic on port 443 for the web tier from any IP.
B
Allow the web tier to initiate outbound traffic on port 443 to any IP.
C
Permit the database tier to receive inbound traffic on port 1433 only from the web tier's security group.
D
Enable the database tier to send outbound traffic on ports 443 and 1433 to the web tier's security group.
No comments yet.