Skip to content

Commit

Permalink
[JN-1537] turning on DNSSEC (#1330)
Browse files Browse the repository at this point in the history
  • Loading branch information
devonbush authored Dec 11, 2024
1 parent 8c8faf2 commit 237e34a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion terraform/gcp/envs/dev.tfvars
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ k8s_namespace = "juniper-dev"
customer_urls = {
demo = {
url = "juniperdemostudy.dev"
dnssec = "off"
dnssec = "on"
additional_records = []
}
}
Expand Down
10 changes: 5 additions & 5 deletions terraform/gcp/envs/prod.tfvars
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,19 @@ environment = "prod"

portals = ["demo", "atcp", "ourhealth", "hearthive", "rgp", "cmi", "trccproject", "gvasc"]

admin_dnssec = "off"
admin_dnssec = "on"
k8s_namespace = "juniper-prod"

# creates DNS records for these customer URLs
customer_urls = {
demo = {
url = "juniperdemostudy.org"
dnssec = "off"
dnssec = "on"
additional_records = []
}
hearthive = {
url = "thehearthive.org"
dnssec = "off"
dnssec = "on"
additional_records = [
{
name = "s1._domainkey"
Expand Down Expand Up @@ -64,7 +64,7 @@ customer_urls = {
}
ourhealth = {
url = "ourhealthstudy.org"
dnssec = "off"
dnssec = "on"
additional_records = [
{
name = "s1._domainkey"
Expand Down Expand Up @@ -94,7 +94,7 @@ customer_urls = {
}
gvasc = {
url = "gvascstudy.org"
dnssec = "off"
dnssec = "on"
additional_records = []
}
}
Expand Down

0 comments on commit 237e34a

Please sign in to comment.