What does CompTIA Cloud+ cover?
The CompTIA Cloud+ CV0-004 exam covers cloud infrastructure and service models, virtualization, infrastructure design, security, migration, maintenance, and troubleshooting. It is a vendor-neutral intermediate certification for cloud administrators and engineers. The exam costs $369 USD with a passing score of 750 out of 900, and is recommended for candidates with 2-3 years of networking or system administration experience.
The CompTIA Cloud+ CV0-004 is a vendor-neutral cloud administration and engineering certification that validates the skills required to maintain and optimize cloud infrastructure services. Unlike AWS, Azure, or GCP certifications, Cloud+ applies across all cloud platforms and demonstrates foundational cloud operations knowledge independent of any specific vendor.
Cloud+ is particularly valuable for IT professionals working in multi-cloud environments, system administrators transitioning to cloud roles, and candidates preparing for vendor-specific cloud certifications. The exam costs $369 USD and requires a passing score of 750 out of 900.
Exam Overview
| Detail | Information |
|---|---|
| Exam Code | CV0-004 |
| Full Name | CompTIA Cloud+ |
| Number of Questions | Maximum 90 |
| Time Limit | 90 minutes |
| Passing Score | 750/900 |
| Cost | $369 USD |
| Prerequisites | Net+ and Server+ or equivalent experience recommended |
| Validity | 3 years |
The exam covers five domains:
- Cloud architecture and design (13%)
- Security (20%)
- Deployment (23%)
- Operations and support (22%)
- Troubleshooting (22%)
"Cloud+ fills a gap in the certification landscape -- it tests cloud operations knowledge that applies regardless of which cloud platform you use. Candidates who have worked with multiple cloud providers find Cloud+ more accessible because they have seen how the same concepts (auto-scaling, VPCs, IAM) are implemented differently by different vendors." -- CompTIA Cloud+ certified professional community
Domain 1: Cloud Architecture and Design (13%)
Cloud Service Models
IaaS, PaaS, and SaaS form the foundational service model hierarchy:
- IaaS: Virtual machines, storage, and networking managed by the customer above the hypervisor level. Most flexibility and control; most management responsibility.
- PaaS: Application runtime environment managed by the provider. Customer manages application code and data only.
- SaaS: Complete application delivered over the internet. Customer manages only users and data.
- FaaS (Function as a Service): Serverless execution of individual functions, billed per invocation.
Cloud Deployment Models
| Model | Description | Example Use Case |
|---|---|---|
| Public cloud | Resources on shared infrastructure owned by provider | Startup web application |
| Private cloud | Dedicated infrastructure for one organization | Regulated healthcare data |
| Hybrid cloud | Mix of public and private cloud resources | Burst to public during peak demand |
| Community cloud | Shared private cloud between organizations with similar requirements | Government agency consortium |
| Multi-cloud | Using multiple public cloud providers simultaneously | Avoiding vendor lock-in |
High Availability and Disaster Recovery
Availability zones provide datacenter-level redundancy within a region. Deploying across multiple availability zones protects against single-datacenter failures.
Regions provide geographic separation for disaster recovery. Deploying across regions protects against regional outages (natural disasters, major power failures).
RTO and RPO targets drive architecture decisions:
- Very low RTO (minutes) requires active-active multi-region deployment
- Moderate RTO (hours) can use active-passive with pre-provisioned failover capacity
- High RTO (days) may use data backup only with on-demand recovery
Domain 2: Security (20%)
Cloud Identity and Access Management
IAM best practices tested in Cloud+:
- Least privilege: Grant only permissions required for each role
- No shared accounts: Each user and service uses unique credentials
- MFA for privileged access: Requiring additional factors for administrative access
- Service accounts: Dedicated identities for application-to-service authentication
- Federation: Using corporate identity provider (Active Directory) for cloud access
Data Security in the Cloud
- Encryption at rest: Provider-managed or customer-managed keys (CMK) for stored data
- Encryption in transit: TLS for all data movement between services and clients
- Key management: Using cloud key management services (AWS KMS, Azure Key Vault, GCP KMS)
- Data residency: Ensuring data is stored only in jurisdictions that comply with regulatory requirements
Network Security
- Virtual Private Cloud (VPC/VNet): Isolated network environment within the cloud
- Security groups: Stateful firewall rules applied to cloud resources (instance level)
- Network ACLs: Stateless firewall rules applied at subnet level
- VPN and Direct Connect/ExpressRoute: Secure connectivity between on-premises and cloud
- Web Application Firewall (WAF): Layer 7 protection for cloud-hosted web applications
Domain 3: Deployment (23%)
Virtualization Technologies
Hypervisor types:
- Type 1 (bare-metal): Installed directly on hardware. Examples: VMware ESXi, Microsoft Hyper-V, KVM. More efficient; used in production cloud environments.
- Type 2 (hosted): Installed on top of an OS. Examples: VMware Workstation, VirtualBox. Less efficient; used for development and testing.
Containers vs. VMs:
| Aspect | Virtual Machines | Containers |
|---|---|---|
| OS | Each VM has full OS | Shared host OS kernel |
| Resource usage | Higher (GB per VM) | Lower (MB per container) |
| Startup time | Minutes | Seconds |
| Isolation | Strong (separate kernel) | Moderate (namespace isolation) |
| Portability | Lower (OS dependencies) | Higher (consistent environment) |
Infrastructure as Code
IaC tools automate cloud resource provisioning:
- Terraform: Declarative, multi-cloud IaC tool using HCL syntax
- AWS CloudFormation: AWS-native IaC using JSON or YAML templates
- Azure Bicep / ARM Templates: Azure-native IaC
- Ansible: Agentless configuration management using YAML playbooks
IaC benefits: Version control for infrastructure, repeatable deployments, reduced configuration drift, faster disaster recovery.
Domain 4: Operations and Support (22%)
Cloud Monitoring
| Monitoring Area | Metrics | Tools |
|---|---|---|
| Compute | CPU utilization, memory, disk I/O | CloudWatch, Azure Monitor, Cloud Operations |
| Network | Bandwidth, latency, packet loss | VPC Flow Logs, NSG Flow Logs |
| Storage | IOPS, throughput, capacity | Storage metrics in cloud consoles |
| Application | Response time, error rate, throughput | Application Performance Monitoring (APM) |
| Cost | Spending by service, resource, tag | Cost Explorer, Azure Cost Management |
Auto-Scaling
Auto-scaling automatically adjusts resource capacity based on demand:
- Horizontal scaling (scale out/in): Adding or removing instances based on metrics
- Vertical scaling (scale up/down): Increasing or decreasing instance size (requires restart in most cases)
- Scaling policies: Target tracking (maintain CPU at 70%), step scaling (add 2 instances when CPU >80%), scheduled scaling (pre-scale before known peak periods)
Backup and Recovery
- Snapshot-based backup: Point-in-time snapshots of volumes and databases
- Cloud backup services: AWS Backup, Azure Backup for centralized management
- Cross-region replication: Copying backups to a different region for disaster recovery
- Backup testing: Regular restore testing to verify backup integrity (untested backups may not restore successfully)
Domain 5: Troubleshooting (22%)
Common Cloud Connectivity Issues
| Issue | Likely Cause | Troubleshooting Step |
|---|---|---|
| Cannot reach cloud VM | Security group blocks inbound port | Check security group rules for required port |
| Application cannot reach database | Database not in same VPC or security group | Verify VPC peering and security group for DB port |
| VPN tunnel down | IKE mismatch or dead peer | Check VPN logs, verify Phase 1/Phase 2 parameters |
| Cloud to on-premises latency | Network path issues | Use traceroute; check ExpressRoute/Direct Connect health |
Performance Troubleshooting
- CPU throttling: Cloud instance hitting CPU credits (burstable instances); consider fixed-performance instance type
- Storage I/O limits: Instance hitting EBS or managed disk IOPS limits; increase volume IOPS or instance type
- Network bandwidth: Instance at maximum network bandwidth for its size; upgrade to network-optimized instance type
- Cold start latency: Serverless functions experiencing initialization delay; use provisioned concurrency
Frequently Asked Questions
How does Cloud+ compare to AWS Solutions Architect Associate? Cloud+ is vendor-neutral covering general cloud concepts applicable across all platforms. AWS Solutions Architect Associate is specific to Amazon Web Services and tests deeper AWS service knowledge. Cloud+ is valuable for multi-cloud environments; AWS SAA is more valuable if your organization primarily uses AWS. For most cloud careers, vendor-specific certifications eventually provide more practical value, but Cloud+ is an excellent introduction.
Is Cloud+ recognized by employers? Cloud+ has moderate employer recognition compared to vendor-specific certifications. Organizations with multi-cloud strategies and those in government or regulated industries value vendor-neutral credentials. For most private-sector cloud roles, AWS, Azure, or GCP certifications are typically preferred by employers. Cloud+ is most valuable as a foundational credential before pursuing vendor-specific certifications.
How much experience do I need before taking Cloud+? CompTIA recommends 2-3 years of experience with IT systems administration and basic networking. Understanding how servers, storage, and networking work in on-premises environments makes cloud concepts much more intuitive. The CertMaster Learn platform for Cloud+ is available without prerequisites for those who prefer structured guided study.
References
- CompTIA. (2025). CompTIA Cloud+ CV0-004 Exam Objectives. https://www.comptia.org/certifications/cloud
- Chapple, M. (2023). CompTIA Cloud+ Study Guide. Sybex.
- Amazon Web Services. (2025). AWS Well-Architected Framework. https://aws.amazon.com/architecture/well-architected/
- Microsoft. (2025). Azure Architecture Center. https://learn.microsoft.com/en-us/azure/architecture/
- NIST. (2011). SP 800-145: The NIST Definition of Cloud Computing. https://csrc.nist.gov/publications/detail/sp/800-145/final
- Professor Messer. (2025). CompTIA Cloud+ Study Resources. https://www.professormesser.com/
