feat: publish script and cleanup

This commit is contained in:
Andrejus
2021-05-02 21:53:29 +01:00
parent fb50593834
commit 1f569c7e09
22 changed files with 144 additions and 58 deletions

View File

@@ -1,3 +1,8 @@
variable "prefix" {
description = "Resource prefix"
default = "dots"
}
variable "project" {
description = "Google Cloud project to host resources in"
type = string
@@ -12,3 +17,15 @@ variable "dns_zone" {
description = "Cloud DNS zone to use"
type = string
}
variable "gcs_location" {
type = string
description = "Google Stoage location to provision resources in"
default = "EU" # Multi-region, Europe
}
variable "dns_ttl" {
type = number
description = "DNS TTL to use for records"
default = 3600
}