D-ECS-DS-23 · Question #124
Which design consideration is least relevant when creating a multi-tenant ECS solution?
The correct answer is A. The color scheme of the tenant's logo. Option A is correct because logo color schemes are a UI/branding concern with no bearing on the architectural integrity, security, or resource management of a multi-tenant ECS platform - it's simply not a design consideration at the infrastructure level. Why the distractors are…
Question
Which design consideration is least relevant when creating a multi-tenant ECS solution?
Options
- AThe color scheme of the tenant's logo
- BIsolation of network traffic between tenants
- CData encryption at rest and in transit
- DImplementation of quotas and limits per tenant
How the community answered
(33 responses)- A88% (29)
- B3% (1)
- C6% (2)
- D3% (1)
Explanation
Option A is correct because logo color schemes are a UI/branding concern with no bearing on the architectural integrity, security, or resource management of a multi-tenant ECS platform - it's simply not a design consideration at the infrastructure level.
Why the distractors are wrong:
- B (network isolation) is critical - tenants must not be able to access each other's traffic, making VPC segmentation, security groups, and namespace isolation essential design decisions.
- C (encryption) is a core security requirement - multi-tenant environments must protect each tenant's data from other tenants and external threats, both at rest (EBS/S3) and in transit (TLS).
- D (quotas and limits) is fundamental - without per-tenant resource constraints, a single noisy tenant can starve others of CPU, memory, or API rate limits, breaking the shared-infrastructure model.
Memory tip: Think of it as the "NERD" rule for multi-tenancy - Network isolation, Encryption, Resource limits, and Data separation are the pillars. Anything outside those pillars (like branding) belongs to the application layer, not the infrastructure design.
Topics
Community Discussion
No community discussion yet for this question.