Created
February 9, 2015 18:51
-
-
Save phinze/097df2400e8e011d5586 to your computer and use it in GitHub Desktop.
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
variable "dep" { } | |
resource "aws_instance" "bar" { | |
ami = "ami-408c7f28" | |
instance_type = "t1.micro" | |
tags { | |
DependsOn = "${var.dep}" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment