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
commit ffbdf31ac4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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}"
}