-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmain.tf
74 lines (70 loc) · 2.45 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
/**
* Copyright 2022 Google LLC
*
* 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.
*/
resource "google_logging_organization_sink" "audit_log_org_sink" {
name = "audit-log-org-sink"
org_id = var.org_id
include_children = true
destination = "bigquery.googleapis.com/projects/${var.project_id}/datasets/${module.bigquery-dataset.dataset_id}"
filter = var.filter
dynamic "exclusions" {
for_each = var.exclusions
iterator = exclusion
content {
name = exclusion.key
filter = exclusion.value
}
}
bigquery_options {
use_partitioned_tables = true
}
}
# Either create a project or set up the given one
module "project" {
source = "github.com/GoogleCloudPlatform/cloud-foundation-fabric//modules/project?ref=v23.0.0"
name = var.project_id
parent = try(var.project_create.parent, null)
billing_account = try(var.project_create.billing_account_id, null)
project_create = var.project_create != null
prefix = var.project_create == null ? null : var.prefix
services = [
"bigquery.googleapis.com",
"logging.googleapis.com"
]
}
resource "google_project_iam_member" "org_sa_bq_role" {
project = var.project_id
role = "roles/bigquery.dataEditor"
member = google_logging_organization_sink.audit_log_org_sink.writer_identity
}
module "bigquery-dataset" {
source = "github.com/GoogleCloudPlatform/cloud-foundation-fabric//modules/bigquery-dataset?ref=v23.0.0"
project_id = var.project_id
id = var.dataset_id
location = var.location
access = {
reader-group = { role = "READER", type = "group" }
owner = { role = "OWNER", type = "group" }
}
access_identities = {
reader-group = "${var.readers_group_email}"
owner = "${var.owners_group_email}"
}
options = {
default_table_expiration_ms = null
default_partition_expiration_ms = null
delete_contents_on_destroy = true
}
}