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.
- Host: GitHub
- URL: https://github.com/hsnakk/terraform-aws-docker-instance
- Owner: HsnAkk
- Created: 2025-02-15T23:12:43.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-02-15T23:18:06.000Z (about 1 year ago)
- Last Synced: 2025-10-11T23:19:15.616Z (6 months ago)
- Topics: aws, aws-ec2, aws-instance, docker
- Language: HCL
- Homepage: https://registry.terraform.io/modules/HsnAkk/docker-instance/aws/latest
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 =
}
```