Files
dotfiles/terraform/module/variables.tf
2021-04-22 19:09:00 +01:00

15 lines
291 B
HCL

variable "project" {
description = "Google Cloud project to host resources in"
type = string
}
variable "domain" {
description = "DNS name to serve static content"
type = string
}
variable "dns_zone" {
description = "Cloud DNS zone to use"
type = string
}