-
Notifications
You must be signed in to change notification settings - Fork 0
/
nextcloud-stg.tf
29 lines (26 loc) · 1.57 KB
/
nextcloud-stg.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
module "nextcloud_staging" {
# source="git@github.com:steled/terraformmodules.git//nextcloud_staging?ref=modules"
source = "../terraformmodules/nextcloud_staging/"
ssh_user = var.server.user
ssh_host = var.server.host
nextcloud_version = "6.2.1" # get version from here: https://github.com/nextcloud/helm/blob/e11836b1935a2a75022d93212687302697ef80ba/charts/nextcloud/Chart.yaml#L3
kubernetes_namespace_name = "nextcloud-staging"
maintenance_job_image = "nextcloud:30.0.1-fpm" # get version from here: https://github.com/nextcloud/helm/blob/main/charts/nextcloud/Chart.yaml#L4
nextcloud_domain = var.nextcloud_stg_domain
environment = var.nextcloud_stg_env
ip_address = var.nextcloud_stg_ip_address
nextcloud_admin_username = var.nextcloud_admin_username
nextcloud_admin_password = var.nextcloud_admin_password
nextcloud_proxies = var.nextcloud_proxies
mail_fromaddress = var.nextcloud_stg_mail_fromaddress
mail_domain = var.nextcloud_mail_domain
smtp_host = var.nextcloud_smtp_host
smtp_port = "587"
smtp_username = var.nextcloud_smtp_username
smtp_password = var.nextcloud_smtp_password
redis_password = var.nextcloud_redis_password
postgresql_username = var.nextcloud_postgresql_username
postgresql_password = var.nextcloud_postgresql_password
postgresql_database = var.nextcloud_postgresql_database
depends_on = [ module.cert_manager_cloudflare ]
}