init: copied modules from lawndale-infra

This commit is contained in:
2022-05-26 00:40:29 +02:00
commit 414feb48ee
39 changed files with 1435 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
variable "name" {
type = string
description = "The name of the volume"
}
variable "namespace" {
type = string
description = "The namespace for the persistent volume claim"
}
variable "volume_storage_capacity" {
type = string
description = "Size of the persistent volume reported to Kubernetes"
default = "1Gi"
}