Skip to content

Latest commit

 

History

History
49 lines (33 loc) · 1.97 KB

README.md

File metadata and controls

49 lines (33 loc) · 1.97 KB

Certainly! Here's an example of a README file for a GitHub repository where you have created an EC2 instance using Terraform, applied ingress and egress rules, and added an open port. It includes instructions for replacing the secret key and access key when cloning the repository:

This repository contains Terraform code to provision an EC2 instance and apply ingress and egress rules.

Before you begin, ensure you have the following:

  • AWS account credentials (access key and secret key)
  • Terraform installed on your local machine

To get started with this repository, follow the steps below:

  1. Clone the repository:

    git clone <repository_url>

1.Navigate to the repository directory: cd terraform-ec2-instance

Provisioning the EC2 Instance

terraform init

terraform plan

terraform apply --auto-approve

ssh -i <path_to_private_key> ec2-user@<public_ip_address>

terraform destroy --auto-approve

Feel free to customize the README file based on your specific requirements and add any additional information or sections you deem necessary.