Skip to content

Instantly share code, notes, and snippets.

@lawliet89
Last active September 3, 2018 03:37
Show Gist options
  • Save lawliet89/b2ae62f9481c1b5cda2bfc929aeb33b9 to your computer and use it in GitHub Desktop.
Save lawliet89/b2ae62f9481c1b5cda2bfc929aeb33b9 to your computer and use it in GitHub Desktop.
Terraform Demo Snippets
#######################################
# Required Variables
#######################################
variable "vpc_id" {
description = "VPC ID to launch resources in"
}
variable "subnet_ids" {
description = "A list of subnet IDs to launch instances in."
type = "list"
}
# ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment