Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

Terraform module to create a docker instance resource on AWS.
https://github.com/salmanaghayev/terraform-aws-docker-instance

aws docker terraform terraform-module

Last synced: 1 day ago
JSON representation

Terraform module to create 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 = "/docker-instance/aws"
key_name = "cw"
}
```