# 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" }