Skip to content

Commit

Permalink
Import the DNS zone (#29)
Browse files Browse the repository at this point in the history
Signed-off-by: Matt Moore <[email protected]>
  • Loading branch information
mattmoor authored Jan 22, 2024
1 parent e9f2a98 commit ae64466
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions iac/gclb.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
// This is imported from Cloud Domains
resource "google_dns_managed_zone" "top-level-zone" {
project = var.project_id
name = "octo-sts-dev"
dns_name = "octo-sts.dev."
description = "DNS zone for domain: octo-sts.dev"

dnssec_config {
state = "on"
}
}

0 comments on commit ae64466

Please sign in to comment.