Skip to content

Commit

Permalink
fix: fix domain identity not found in output issue (#36)
Browse files Browse the repository at this point in the history
Co-authored-by: Anmol Nagpal <anmol@clouddrove.com>
  • Loading branch information
nileshgadgi and anmolnagpal committed Feb 5, 2024
1 parent 09c7f27 commit 1bf7e20
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
@@ -1,7 +1,7 @@
##Module : DOMAIN IDENTITY
## Description : Terraform module to create domain identity using domain
output "domain_identity_arn" {
value = aws_ses_domain_identity.default[0].arn
value = try(aws_ses_domain_identity.default[0].arn, "")
description = "ARN of the SES domain identity."
}

Expand Down

0 comments on commit 1bf7e20

Please sign in to comment.