Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/kgoksal/terraform-aws-docker-insantance
- Owner: KGoksal
- Created: 2024-03-26T19:14:12.000Z (10 months ago)
- Default Branch: master
- Last Pushed: 2024-08-07T00:41:11.000Z (5 months ago)
- Last Synced: 2024-08-07T03:21:07.700Z (5 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"
}