Skip to content

eneseren25/terraform-aws-docker-instance

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Terraform Module to provision an AWS EC2 instance with the latest amazon linux 2 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 = "eneseren25/docker-instance/aws"
    key_name = "clarusway_key"
}