Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 416 Bytes

README.md

File metadata and controls

19 lines (13 loc) · 416 Bytes

Terraform Module to provision an AWS EC2 instance with the latest amazon linux 2023 ami and installed docker in it.

Not intended for production use. It is an example module.

It is just for showing how to create a publish module in Terraform Registry.

Usage:

provider "aws" {
  region = "us-east-1"
}

module "docker_instance" {
    source = "myucel92/docker-instance/aws"
    key_name = "clarusway"
}