An open API service indexing awesome lists of open source software.

https://github.com/hsnakk/terraform-aws-docker-instance

Terraform module which creates a docker instance resource on AWS.
https://github.com/hsnakk/terraform-aws-docker-instance

aws aws-ec2 aws-instance docker

Last synced: 6 months ago
JSON representation

Terraform module which creates a docker instance resource on AWS.

Awesome Lists containing this project

README

          

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:

```hcl

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

module "docker_instance" {
source = "HsnAkk/docker-instance/aws"
key_name =
}
```