/terraform-aws-example

Sample repo for sharing a Terraform module.

Primary LanguageHCLMIT LicenseMIT

My awesome TF module

This solves all your infrastructure needs. (Just kidding, this is just an example :) )

Usage

Sample usage:

module "my_ec2_instance" {
  source = "github.com/cobusbernard/tf-module-example"

  ec2_instance_type   = "t3.micro"
  ec2_instance_name   = "My instance"
  number_of_instances = 1
  ec2_ami_id          = < your AMI ID to use to launch the instance>
}