From 71116d283271d5b82e48deb1a756ec276a69e88b Mon Sep 17 00:00:00 2001 From: RouxAntoine Date: Tue, 8 Oct 2024 21:32:51 +0200 Subject: [PATCH] feat(favorite-link): create new application --- main.tf | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/main.tf b/main.tf index 988a142..48f11e2 100644 --- a/main.tf +++ b/main.tf @@ -76,6 +76,12 @@ module "nextcloud" { privileges = ["CREATE", "CONNECT", "TEMPORARY"] } +module "favorite_link" { + source = "./generic-database" + database_name = "favorite-link" + username = "favorite-link" +} + output "ampere_account" { value = module.ampere.account sensitive = true @@ -95,4 +101,8 @@ output "keycloak_account" { output "nextcloud_account" { value = module.nextcloud.account sensitive = true +} +output "favorite_link_account" { + value = module.favorite_link.account + sensitive = true } \ No newline at end of file