Skip to content

Commit

Permalink
Fix naming
Browse files Browse the repository at this point in the history
  • Loading branch information
eric-gonzales committed Mar 8, 2018
1 parent 1048d83 commit d62cfd6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
data "aws_acm_certificate" "expapp" {
data "aws_acm_certificate" "certificate" {
domain = "${var.domain}"
statuses = "${var.statuses}"
types = "${var.types}"
Expand Down
2 changes: 1 addition & 1 deletion outputs.tf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
output "arn" {
description = "The ARN of the certificate"
value = "${data.aws_acm_certificate.expapp.arn}"
value = "${data.aws_acm_certificate.certificate.arn}"
}

0 comments on commit d62cfd6

Please sign in to comment.