-
Notifications
You must be signed in to change notification settings - Fork 35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adds variables for data governance project and bigquery project #124
Adds variables for data governance project and bigquery project #124
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
initial review comments
@@ -34,13 +34,15 @@ module "dwh_networking" { | |||
subnet_ip = var.subnet_ip | |||
perimeter_members = local.perimeter_members | |||
commom_suffix = random_id.suffix.hex | |||
resources = [data.google_project.ingestion_project.number, data.google_project.governance_project.number, data.google_project.datalake_project.number] | |||
|
|||
restricted_services = [ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
consider adding the other services mentioned here:
https://github.com/GoogleCloudPlatform/notebooks-blueprint-security/blob/main/main.tf#L200
That are relevant (for instance notebook api's prob are not)
test/setup/main.tf
Outdated
"serviceusage.googleapis.com", | ||
"iam.googleapis.com", | ||
"dns.googleapis.com", | ||
"pubsub.googleapis.com", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
wondering if this is copy/pasted for the project for BQ...
Are the following really needed for BQ project?
- pubsub
- dataflow
- dlp
- cloud scheduler
- appengine
- cloudbuild
- compute
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Fixes #24