mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-01-27 10:18:54 +00:00
chore(infra): Add CAA record for trust.firezone.dev (#6668)
Why: * `trust.firezone.dev` is actually being hosted by `trust.oneleet.com` which means Oneleet needs to issue the cert for `trust.firezone.dev` and can't use the Google CA used for the rest of `firezone.dev`. Closes #6661
This commit is contained in:
@@ -155,6 +155,19 @@ resource "google_dns_record_set" "google-dkim" {
|
||||
|
||||
# Oneleet Trust page
|
||||
|
||||
resource "google_dns_record_set" "trust-dns-caa" {
|
||||
project = module.google-cloud-project.project.project_id
|
||||
managed_zone = module.google-cloud-dns.zone_name
|
||||
|
||||
type = "CAA"
|
||||
name = "trust.${module.google-cloud-dns.dns_name}"
|
||||
rrdatas = [
|
||||
"0 issue \"letsencrypt.org\"",
|
||||
"0 iodef \"mailto:security@firezone.dev\""
|
||||
]
|
||||
ttl = 3600
|
||||
}
|
||||
|
||||
resource "google_dns_record_set" "oneleet-trust" {
|
||||
project = module.google-cloud-project.project.project_id
|
||||
managed_zone = module.google-cloud-dns.zone_name
|
||||
|
||||
Reference in New Issue
Block a user