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: 6 months ago
JSON representation
Creator of an innovative Terraform module tailored for AWS environments, facilitating the seamless provisioning of Docker instances.
- Host: GitHub
- URL: https://github.com/kgoksal/terraform-aws-docker-insantance
- Owner: KGoksal
- Created: 2024-03-26T19:14:12.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2024-08-09T00:47:13.000Z (over 1 year ago)
- Last Synced: 2025-01-18T15:55:20.065Z (12 months ago)
- Topics: aws, docker, hlc, terraform, terraform-module
- Language: HCL
- Homepage: https://registry.terraform.io/modules/kadirgoksal/docker-insantance/aws/0.0.3?tab=inputs
- Size: 4.88 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 = "AbdulkadirGoksal/docker-instance/aws"
key_name = "your_key_name"
}