Browse Source
Merge pull request #2135 from riverron/master
Updated with correct syntax to access default_tags variable.
pull/2148/head
Spencer Smith
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
4 additions and
4 deletions
-
contrib/terraform/aws/modules/vpc/outputs.tf
-
contrib/terraform/aws/output.tf
|
|
@ -16,6 +16,6 @@ output "aws_security_group" { |
|
|
|
} |
|
|
|
|
|
|
|
output "default_tags" { |
|
|
|
value = "${default_tags}" |
|
|
|
value = "${var.default_tags}" |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
@ -24,5 +24,5 @@ output "inventory" { |
|
|
|
} |
|
|
|
|
|
|
|
output "default_tags" { |
|
|
|
value = "${default_tags}" |
|
|
|
} |
|
|
|
value = "${var.default_tags}" |
|
|
|
} |