Skip to content

This repository contains a Terraform project to provision an EC2 instance on AWS, configure Docker automatically, and deploy a Spring Boot application to a container. The infrastructure is created in an automated way, ensuring an environment ready for the application to run with minimal manual intervention.

License

Notifications You must be signed in to change notification settings

melvintivane/terraform-docker-aws-ec2

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Terraform AWS EC2 + Docker Deployment

This repository contains a Terraform project that provisions an AWS EC2 instance, sets up Docker, and automatically deploys a Spring Boot application in a container.

📌 Features

  • Security Group: Allows HTTP (port 80) and SSH (port 22) access.
  • SSH Key: Imports a local public SSH key for secure instance access.
  • EC2 Instance:
    • Deploys an t2.nano EC2 instance with a predefined AMI.
    • Runs a startup script (user_data.sh) to install and configure Docker.
    • Pulls and runs a Docker container from Docker Hub.
  • Dockerfile:
    • Uses openjdk:21 as the base image.
    • Copies the Spring Boot JAR into the container.
    • Exposes port 8080.
    • Defines the entry command to run the Java application.

🛠️ Prerequisites

  • AWS account with proper permissions.
  • Terraform installed (>=1.0.0).
  • Public SSH key available at ~/.ssh/id_rsa.pub.
  • Spring Boot application packaged as a JAR (target/app-0.0.1-SNAPSHOT.jar).
  • Docker image published on Docker Hub.

🚀 Quick Start

  1. Clone the repository:
    git clone https://github.com/melvintivane/terraform-docker-aws-ec2.git
    cd terraform-docker-aws-ec2
  2. Initialize Terraform:
    terraform init
  3. Deploy the infrastructure:
    terraform apply -auto-approve
  4. Access the application:
    • Retrieve the public IP of the instance:
      terraform output
    • Open in a browser:
      http://<PUBLIC_IP>
      

🔥 Destroy Resources

To remove all created infrastructure:

terraform destroy -auto-approve

⚠️ Keep your AWS credentials secure and never share them publicly. 🚀

About

This repository contains a Terraform project to provision an EC2 instance on AWS, configure Docker automatically, and deploy a Spring Boot application to a container. The infrastructure is created in an automated way, ensuring an environment ready for the application to run with minimal manual intervention.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published