Files
terraform-app-gitea/volume.tf
Tamas Kiss 65ab6a1512
Some checks failed
continuous-integration/drone/push Build is failing
init: copy from lawndale-infra
2022-05-27 16:55:50 +02:00

22 lines
824 B
HCL

# This is actually a self reference as these modules would only be available IF
# This lawndale gitea instance is running and available.
# Here it would be wiser to reference a mirror of this repository
# TODO: setup repository mirror for terraform-modules
# TODO: user mirrored repository
module "gitea_persistance" {
source = "git@git.thomasklein.me:thomasklein/terraform-modules//9p-persistent-volume"
namespace = kubernetes_namespace.this.metadata.0.name
name = "gitea"
volume_storage_capacity = "5Gi"
}
module "postgres_persistance" {
source = "git@git.thomasklein.me:thomasklein/terraform-modules//9p-persistent-volume"
namespace = kubernetes_namespace.this.metadata.0.name
name = "gitea-postgres"
volume_storage_capacity = "5Gi"
}