Merge pull request #2135 from riverron/master

Updated with correct syntax to access default_tags variable.
This commit is contained in:
Spencer Smith
2018-01-09 17:22:12 -05:00
committed by GitHub
2 changed files with 4 additions and 4 deletions

View File

@ -16,6 +16,6 @@ output "aws_security_group" {
}
output "default_tags" {
value = "${default_tags}"
value = "${var.default_tags}"
}
}

View File

@ -24,5 +24,5 @@ output "inventory" {
}
output "default_tags" {
value = "${default_tags}"
}
value = "${var.default_tags}"
}