Skip to content

Commit

Permalink
Merge pull request #2135 from riverron/master
Browse files Browse the repository at this point in the history
Updated with correct syntax to access default_tags variable.
  • Loading branch information
rsmitty committed Jan 9, 2018
2 parents ccd9cc3 + 8f36a02 commit ffbdf31
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions contrib/terraform/aws/modules/vpc/outputs.tf
Expand Up @@ -16,6 +16,6 @@ output "aws_security_group" {
}

output "default_tags" {
value = "${default_tags}"
value = "${var.default_tags}"

}
}
4 changes: 2 additions & 2 deletions contrib/terraform/aws/output.tf
Expand Up @@ -24,5 +24,5 @@ output "inventory" {
}

output "default_tags" {
value = "${default_tags}"
}
value = "${var.default_tags}"
}

0 comments on commit ffbdf31

Please sign in to comment.