Skip to content

Commit

Permalink
add timeouts
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed Apr 13, 2021
1 parent de7ba98 commit 85fd146
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions ses-domain/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,11 @@ resource "aws_ses_domain_identity_verification" "this" {
# count = local.ses_available && local.ses_domain_ready ? 1 : 0
count = local.ses_domain_ready ? 1 : 0
domain = aws_ses_domain_identity.this.id

timeouts {
create = "15m"
delete = "5m"
}
}

resource "aws_ses_domain_mail_from" "this" {
Expand Down

0 comments on commit 85fd146

Please sign in to comment.