Skip to content
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

Fix bug introduced by #438 in outputs.tf #441

Merged
merged 1 commit into from
Aug 18, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Update outputs.tf
#438 broke this module
  • Loading branch information
cloud-pharaoh authored Aug 17, 2020
commit b460132e2f5a6a56be612199f328cb3eed17b461
4 changes: 2 additions & 2 deletions modules/shared_vpc_access/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ output "project_id" {
description = "Service project ID."
value = var.service_project_id
depends_on = [
google_compute_subnetwork_iam_member.gke_dataproc_shared_vpc_subnets,
google_compute_subnetwork_iam_member.service_shared_vpc_subnet_users,
google_project_iam_member.gke_host_agent,
google_project_iam_member.gke_dataproc_shared_vpc_network_user,
google_project_iam_member.service_shared_vpc_user,
]
}