Skip to content

Commit

Permalink
Merge branch 'lrnt-020/email-server-setup' into staging
Browse files Browse the repository at this point in the history
  • Loading branch information
zatarain committed Aug 9, 2024
2 parents d555095 + 1be6139 commit c9771a8
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions mail.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
resource "aws_secretsmanager_secret" "crm-service" {
name = "crm-service"
}

resource "aws_secretsmanager_secret_version" "crm-service" {
secret_id = aws_secretsmanager_secret.crm-service.id
secret_string = jsonencode({
code = "change me"
dkim = "change me"
dmarc = "change me"
})
}

0 comments on commit c9771a8

Please sign in to comment.