Skip to content

Commit

Permalink
fix(output): Make sure "cf_aliases" won't fail if aliases not set (#24)
Browse files Browse the repository at this point in the history
  • Loading branch information
k911 authored and aknysh committed Apr 26, 2019
1 parent 46d85f1 commit ddf9555
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ output "cf_arn" {
}

output "cf_aliases" {
value = "${aws_cloudfront_distribution.default.aliases}"
value = "${var.aliases}"
description = "Extra CNAMEs of AWS CloudFront"
}

Expand Down

0 comments on commit ddf9555

Please sign in to comment.