Skip to content
Snippets Groups Projects
Commit dba1c139 authored by Ron Rivera's avatar Ron Rivera
Browse files

Updated with correct syntax to access default_tags variable.

parent fd04c142
No related branches found
No related tags found
No related merge requests found
...@@ -16,6 +16,6 @@ output "aws_security_group" { ...@@ -16,6 +16,6 @@ output "aws_security_group" {
} }
output "default_tags" { output "default_tags" {
value = "${default_tags}" value = "${var.default_tags}"
} }
\ No newline at end of file
...@@ -24,5 +24,5 @@ output "inventory" { ...@@ -24,5 +24,5 @@ output "inventory" {
} }
output "default_tags" { output "default_tags" {
value = "${default_tags}" value = "${var.default_tags}"
} }
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment