Skip to content

Instantly share code, notes, and snippets.

@lawliet89
Created September 3, 2018 03:37
Show Gist options
  • Save lawliet89/db9bdeac311caba12c682debff5c90a8 to your computer and use it in GitHub Desktop.
Save lawliet89/db9bdeac311caba12c682debff5c90a8 to your computer and use it in GitHub Desktop.
Terraform Demo Snippets
#######################################
# Optional Variables
#######################################
variable "aws_region" {
description = "Region to deploy to"
default = "ap-southeast-1"
}
variable "tags" {
description = "Tags to add to all resources that support tags"
default {
Terraform = "true"
}
}
variable "ssh_cidr" {
description = "CIDR to allow SSH access from"
default = []
}
# ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment