Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,13 @@ variable "disable_certificate" {
default = false
description = "Specify true to disable SSL certificate creation"
}

variable "skip_delegation" {
type = bool
default = false
description = <<EOF
Enable skip_delegation to prevent creating a GCP DNS zone dedicated to this subdomain.
This is useful when two subdomains in Nullstone collide (e.g. `a.b.domain.com` and `b.domain.com`).
By enabling, all subsequent DNS records are stored in the root domain DNS zone `domain.com`.
EOF
}