Skip to content

Commit

Permalink
comment domain/email specific configuration in terraform deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
cornerman committed May 29, 2022
1 parent 51a1a3e commit ad63cef
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions terraform/fun.tf
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ module "example" {

stage = terraform.workspace

domain = {
name = "fun-stack.org"
deploy_to_subdomain = local.is_prod ? null : "${terraform.workspace}.env"
catch_all_email = "johannes@karoff.net"
}
# domain = {
# name = "example.com"
# deploy_to_subdomain = local.is_prod ? null : "${terraform.workspace}.env"
# catch_all_email = "me@example.net"
# }

website = {
source_dir = "../webapp/target/scala-2.13/scalajs-bundler/main/dist"
Expand Down Expand Up @@ -72,10 +72,10 @@ module "example" {
css_file = "auth.css"
}

budget = {
limit_monthly_dollar = "10.0"
notify_email = "budget@fun-stack.org"
}
# budget = {
# limit_monthly_dollar = "10.0"
# notify_email = "budget@example.com"
# }

# dev_setup = {
# # enabled = !local.is_prod
Expand Down

0 comments on commit ad63cef

Please sign in to comment.