-
Notifications
You must be signed in to change notification settings - Fork 910
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #925 from brianhmj/master
Updating main.tf and README following #922
- Loading branch information
Showing
3 changed files
with
31 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,6 +26,8 @@ Clone this repository, then go through the following steps to create resources: | |
- `terraform init` | ||
- `terraform apply` | ||
|
||
Note: Org level viewing permission is required for some metrics such as firewall policies. | ||
|
||
Once the resources are deployed, go to the following page to see the dashboard: https://console.cloud.google.com/monitoring/dashboards?project=<YOUR-MONITORING-PROJECT>. | ||
A dashboard called "quotas-utilization" should be created. | ||
|
||
|
@@ -74,6 +76,7 @@ In a future release, we could support: | |
- Dynamic routes calculation for VPCs/PPGs with "global routing" set to OFF | ||
- Static routes calculation for projects/PPGs with "custom routes importing/exporting" set to OFF | ||
- Calculations for cross Organization peering groups | ||
- Support different scopes (reduced and fine-grained) | ||
|
||
If you are interested in this and/or would like to contribute, please contact [email protected]. | ||
<!-- BEGIN TFDOC --> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# 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 | ||
# | ||
# https://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. | ||
|
||
terraform { | ||
required_version = ">= 1.3.1" | ||
required_providers { | ||
google = { | ||
source = "hashicorp/google" | ||
version = ">= 4.40.0" # tftest | ||
} | ||
google-beta = { | ||
source = "hashicorp/google-beta" | ||
version = ">= 4.40.0" # tftest | ||
} | ||
} | ||
} |