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.
- 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.
- Deploys an
- 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.
- Uses
- 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.
- Clone the repository:
git clone https://github.com/melvintivane/terraform-docker-aws-ec2.git cd terraform-docker-aws-ec2
- Initialize Terraform:
terraform init
- Deploy the infrastructure:
terraform apply -auto-approve
- Access the application:
- Retrieve the public IP of the instance:
terraform output
- Open in a browser:
http://<PUBLIC_IP>
- Retrieve the public IP of the instance:
To remove all created infrastructure:
terraform destroy -auto-approve