Last active
September 3, 2018 03:37
-
-
Save lawliet89/b2ae62f9481c1b5cda2bfc929aeb33b9 to your computer and use it in GitHub Desktop.
Terraform Demo Snippets
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
####################################### | |
# 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