-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmain.tf
137 lines (124 loc) · 3.58 KB
/
main.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
terraform {
required_providers {
postgresql = {
source = "cyrilgdn/postgresql"
version = "1.18.0"
}
}
}
variable "pg_host" {
type = string
default = "localhost"
}
variable "pg_port" {
type = number
default = 5432
}
variable "pg_username" {
type = string
default = "postgres"
}
variable "pg_password" {
type = string
sensitive = true
}
variable "pg_database" {
type = string
default = "postgres"
}
variable "pg_cookbook_prod_admin_password" {
type = string
sensitive = true
}
variable "pg_cookbook_prod_webserver_password" {
type = string
sensitive = true
}
variable "pg_cookbook_staging_admin_password" {
type = string
sensitive = true
}
variable "pg_cookbook_staging_webserver_password" {
type = string
sensitive = true
}
provider "postgresql" {
host = var.pg_host
port = var.pg_port
database = var.pg_database
username = var.pg_username
password = var.pg_password
sslmode = "disable"
connect_timeout = 15
expected_version = 16
}
resource "postgresql_role" "cookbook_prod_admin" {
name = "cookbook_prod_admin"
login = true
password = var.pg_cookbook_prod_admin_password
}
resource "postgresql_role" "cookbook_prod_webserver" {
name = "cookbook_prod_webserver"
login = true
password = var.pg_cookbook_prod_webserver_password
}
resource "postgresql_database" "cookbook_prod" {
name = "cookbook_prod"
owner = "cookbook_prod_admin"
template = "template0"
encoding = "UTF8"
lc_collate = "en_US.utf8"
lc_ctype = "en_US.utf8"
}
resource "postgresql_role" "cookbook_staging_admin" {
name = "cookbook_staging_admin"
login = true
password = var.pg_cookbook_staging_admin_password
}
resource "postgresql_role" "cookbook_staging_webserver" {
name = "cookbook_staging_webserver"
login = true
password = var.pg_cookbook_staging_webserver_password
}
resource "postgresql_database" "cookbook_staging" {
name = "cookbook_staging"
owner = "cookbook_staging_admin"
template = "template0"
encoding = "UTF8"
lc_collate = "en_US.utf8"
lc_ctype = "en_US.utf8"
}
// Grant privileges to the webserver. The server needs to read and update tables and "use"
// sequences, both for existing tables and new ones.
// We also allow "SELECT" on sequences so we can pg_dump the database as the webserver.
locals {
privileges = [{
object_type = "table"
privileges = ["SELECT", "INSERT", "UPDATE", "DELETE"]
}, {
object_type = "sequence"
privileges = ["USAGE", "SELECT"]
}]
environments = ["staging", "prod"]
environment_privileges = { for pair in setproduct(local.environments, local.privileges) :
"${pair[0]}.${pair[1].object_type}" => { environment : pair[0], privilege : pair[1] }
}
}
resource "postgresql_default_privileges" "cookbook_webserver" {
for_each = local.environment_privileges
database = "cookbook_${each.value.environment}"
role = "cookbook_${each.value.environment}_webserver"
schema = "public"
owner = "cookbook_${each.value.environment}_admin"
object_type = each.value.privilege.object_type
privileges = each.value.privilege.privileges
}
resource "postgresql_grant" "cookbook_webserver" {
for_each = local.environment_privileges
database = "cookbook_${each.value.environment}"
role = "cookbook_${each.value.environment}_webserver"
schema = "public"
object_type = each.value.privilege.object_type
objects = [] # All objects of this type.
privileges = each.value.privilege.privileges
}