Skip to content

Instantly share code, notes, and snippets.

@p0bailey
Last active August 1, 2019 00:01
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save p0bailey/e6968d0e552c12614ec7440826afc8e4 to your computer and use it in GitHub Desktop.
Save p0bailey/e6968d0e552c12614ec7440826afc8e4 to your computer and use it in GitHub Desktop.
Terraform Module README

demo terraform module

A terraform module to provide a in AWS/AZURE/ETC,ETC.

This should be used an a generic template to be included in every terraform module.

Module Input Variables

  • name - variable name
  • environment - variable environment

Usage

module "demo" {
  source = "github.com/my-repo/demo"

  name = "whatever variable you would like to pass"

  tags {
    "Environment" = "${var.environment}"
  }
}

Outputs

  • name - does what it says on the tin
  • environment - does what it says on the tin

Authors

name.surname@company.com

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment