Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/kgoksal/terraform-aws-docker-insantance

Creator of an innovative Terraform module tailored for AWS environments, facilitating the seamless provisioning of Docker instances.
https://github.com/kgoksal/terraform-aws-docker-insantance

aws docker hlc terraform terraform-module

Last synced: about 2 months ago
JSON representation

Creator of an innovative Terraform module tailored for AWS environments, facilitating the seamless provisioning of Docker instances.

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 = "AbdulkadirGoksal/docker-instance/aws"
key_name = "your_key_name"
}