Skip to content

Commit dd41fce

Browse files
authored
fix: Wait for correct certificate_arn when validation is enabled (#55)
1 parent dcf0242 commit dd41fce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

outputs.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
output "this_acm_certificate_arn" {
22
description = "The ARN of the certificate"
3-
value = element(concat(aws_acm_certificate.this.*.arn, [""]), 0)
3+
value = element(concat(aws_acm_certificate_validation.this.*.certificate_arn, aws_acm_certificate.this.*.arn, [""]), 0)
44
}
55

66
output "this_acm_certificate_domain_validation_options" {

0 commit comments

Comments
 (0)