diff --git a/README.md b/README.md index a08c5d2..e2bb9e0 100644 --- a/README.md +++ b/README.md @@ -55,6 +55,7 @@ module "my_domain" { | [dns_zone](#output_dns_zone) | DNS Zone of the domain. | | [tem_id](#output_tem_id) | ID of the Transaction Email Domain. | | [tem_reputation](#output_tem_reputation) | Reputation of the Transaction Email Domain. | +| [tem_status](#output_tem_status) | Status of the Transaction Email Domain. | | [tem_validated](#output_tem_validated) | Indicates if the domain has been verified for email sending. | diff --git a/outputs.tf b/outputs.tf index 8ff2748..4fcb041 100644 --- a/outputs.tf +++ b/outputs.tf @@ -13,6 +13,11 @@ output "tem_reputation" { value = try(scaleway_tem_domain.this[0].reputation, null) } +output "tem_status" { + description = "Status of the Transaction Email Domain." + value = try(scaleway_tem_domain.this[0].status, null) +} + output "tem_validated" { description = "Indicates if the domain has been verified for email sending." value = try(scaleway_tem_domain_validation.this[0].validated, null)