Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: remove our company mail from the Let's Encrypt issuer
Browse files Browse the repository at this point in the history
lentidas committed Nov 9, 2023
1 parent afff978 commit 7a42550
Showing 2 changed files with 8 additions and 2 deletions.
4 changes: 2 additions & 2 deletions locals.tf
Original file line number Diff line number Diff line change
@@ -3,12 +3,12 @@ locals {
letsencrypt = {
production = {
name = "letsencrypt-prod"
email = "letsencrypt@camptocamp.com"
email = var.letsencrypt_issuer_email
server = "https://acme-v02.api.letsencrypt.org/directory"
}
staging = {
name = "letsencrypt-staging"
email = "letsencrypt@camptocamp.com"
email = var.letsencrypt_issuer_email
server = "https://acme-staging-v02.api.letsencrypt.org/directory"
}
}
6 changes: 6 additions & 0 deletions variables.tf
Original file line number Diff line number Diff line change
@@ -80,6 +80,12 @@ variable "dependency_ids" {
## Module variables
#######################

variable "letsencrypt_issuer_email" {
description = "Email address used to register with Let's Encrypt."
type = string
default = "letsencrypt@example.org"
}

variable "use_default_dns01_solver" {
description = "Whether to use the default dns01 solver configuration."
type = bool

0 comments on commit 7a42550

Please sign in to comment.