-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tf
94 lines (81 loc) · 2.9 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
/**
* Copyright 2024 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.
*/
module "access_context_manager_policy" {
source = "terraform-google-modules/vpc-service-controls/google"
version = "~> 6.0"
parent_id = var.parent_id
policy_name = var.policy_name
}
module "access_level_members" {
source = "terraform-google-modules/vpc-service-controls/google//modules/access_level"
version = "~> 6.0"
description = "Simple Example Access Level"
policy = module.access_context_manager_policy.policy_id
name = var.access_level_name
members = var.members
regions = var.regions
}
resource "null_resource" "wait_for_members" {
provisioner "local-exec" {
command = "sleep 60"
}
depends_on = [module.access_level_members]
}
module "regular_service_perimeter_1" {
source = "terraform-google-modules/vpc-service-controls/google//modules/regular_service_perimeter"
version = "~> 6.0"
policy = module.access_context_manager_policy.policy_id
perimeter_name = var.perimeter_name
description = "Perimeter shielding bigquery project ${null_resource.wait_for_members.id}"
resources = [var.protected_project_ids["number"]]
access_levels = [module.access_level_members.name]
restricted_services = ["bigquery.googleapis.com", "storage.googleapis.com"]
shared_resources = {
all = [var.protected_project_ids["number"]]
}
}
module "bigquery" {
source = "terraform-google-modules/bigquery/google"
version = "~> 9.0"
dataset_id = var.dataset_id
dataset_name = var.dataset_id
description = "Dataset with a single table with one field"
default_table_expiration_ms = "3600000"
project_id = var.protected_project_ids["id"]
location = "US"
access = []
deletion_protection = false
tables = [
{
table_id = "example_table",
schema = file("sample_bq_schema.json")
time_partitioning = {
type = "DAY",
field = null,
require_partition_filter = false,
expiration_ms = null,
},
range_partitioning = null,
expiration_time = null,
clustering = [],
labels = {
env = "dev"
billable = "true"
owner = "joedoe"
},
}
]
}