Eucalyptus is open source software for building private, AWS-compatible IT, QA, and developer clouds. It makes it easy to deliver cloud computing, just like AWS, from within your data center. | With Terraform, you describe your complete infrastructure as code, even as it spans multiple service providers. Your servers may come from AWS, your DNS may come from CloudFlare, and your database may come from Heroku. Terraform will build all these resources across all these providers in parallel. |
Hybrid Cloud Management - Launch instances, create snapshots and manage autoscaling groups in either your private or public clouds from a single environment. Now the same powerful and easy to use self-service interface that provisions and manages Eucalyptus Cloud resources can manage your AWS cloud resources.;AWS Compatibility - Eucalyptus provides industry-leading compatibility with popular Amazon Web Services (AWS) APIs including EC2, S3, Elastic Block Store (EBS), Identity and Access Management (IAM), Auto Scaling, Elastic Load Balancing (ELB), and CloudWatch.;Compute - Eucalyptus allows you to use industry-standard servers, storage, networking, and virtualization technologies to deliver cost-effective, AWS-compatible cloud services in your datacenter. Eucalyptus is compatible with AWS’s EC2 and allows you to easily deploy compute resources and efficiently increase or decrease compute capacity based on application demands.;Networking - Eucalyptus offers flexible and scalable virtual networking capabilities compatible with AWS Elastic IPs, Security Groups, and Elastic Load Balancing.;Storage - Eucalyptus provides S3-compatible object storage and EBS-compatible block storage using industry-standard storage hardware to deliver against a variety of application performance, cost, and reliability requirements.;Self-service Provisioning - In addition to providing REST-based APIs for programmatic access, Eucalyptus includes an easy to use web-based console to provide self-service provisioning of cloud resources to users.;Cloud Management - Eucalyptus allows administrators to easily manage their cloud via REST-based APIs, command line interface (CLI), or from a web-based console. | Infrastructure as Code: Infrastructure is described using a high-level configuration syntax. This allows a blueprint of your datacenter to be versioned and treated as you would any other code. Additionally, infrastructure can be shared and re-used.;Execution Plans: Terraform has a "planning" step where it generates an execution plan. The execution plan shows what Terraform will do when you call apply. This lets you avoid any surprises when Terraform manipulates infrastructure.;Resource Graph: Terraform builds a graph of all your resources, and parallelizes the creation and modification of any non-dependent resources. Because of this, Terraform builds infrastructure as efficiently as possible, and operators get insight into dependencies in their infrastructure.;Change Automation: Complex changesets can be applied to your infrastructure with minimal human interaction. With the previously mentioned execution plan and resource graph, you know exactly what Terraform will change and in what order, avoiding many possible human errors |