feat(favorite-link): create new application

This commit is contained in:
RouxAntoine 2024-10-08 21:32:51 +02:00
parent 9f15c7c6af
commit 71116d2832
Signed by: antoine
GPG Key ID: 098FB66FC0475E70

10
main.tf
View File

@ -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
}