This repository has been archived by the owner on Jul 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
postgresql.tf
81 lines (73 loc) · 2.13 KB
/
postgresql.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
/**
* Copyright 2021 ZUP IT SERVICOS EM TECNOLOGIA E INOVACAO SA
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
locals {
databases = [
"charlescd_moove",
"charlescd_villager",
"charlescd_butler",
"charlescd_hermes",
"charlescd_compass",
"keycloak",
]
database = {
for db in local.databases : db => {
database = "${db}_db"
user = db
password = random_password.databases[db].result
}
}
}
resource "random_password" "databases" {
for_each = toset(local.databases)
keepers = { database = each.key }
length = 16
special = false
}
resource "helm_release" "postgresql" {
name = "postgresql"
namespace = kubernetes_namespace.database.metadata[0].name
repository = "https://charts.bitnami.com/bitnami"
chart = "postgresql"
version = "10.12.4"
set {
name = "initdbScriptsSecret"
value = kubernetes_secret.userdata.metadata[0].name
}
set {
name = "fullnameOverride"
value = "postgresql"
}
set {
name = "image.tag"
value = "11.13.0-debian-10-r65"
}
}
resource "kubernetes_secret" "userdata" {
metadata {
name = "userdata"
namespace = kubernetes_namespace.database.metadata[0].name
}
data = {
"userdata.sql" = <<-EOT
%{ for db in local.databases ~}
create database ${local.database[db]["database"]};
create user ${local.database[db]["user"]} with encrypted password '${local.database[db]["password"]}';
alter user ${local.database[db]["user"]} with superuser;
grant all privileges on database ${local.database[db]["database"]} to ${local.database[db]["user"]};
%{ endfor ~}
EOT
}
}