diff --git a/blueprints/cloud-operations/network-dashboard/README.md b/blueprints/cloud-operations/network-dashboard/README.md index 8d809ca321..e3c51510e8 100644 --- a/blueprints/cloud-operations/network-dashboard/README.md +++ b/blueprints/cloud-operations/network-dashboard/README.md @@ -18,13 +18,11 @@ Clone this repository, then go through the following steps to create resources: ```tfvars - organization_id = "" - billing_account = "" - - monitoring_project_id = "" # Monitoring project where the dashboard will be created and the solution deployed, a project named "-network-dahshboard" will be created if left blank - - metrics_project_id = "" # Optional, overrides monitoring_project_id for metrics writing and dashboard deployment + - monitoring_project_id = "" # Monitoring project where the dashboard will be created and the solution deployed, a project named "mon-network-dahshboard" will be created if left blank - monitored_projects_list = ["project-1", "project2"] # Projects to be monitored by the solution - monitored_folders_list = ["folder_id"] # Folders to be monitored by the solution - prefix = "" # Monitoring project name prefix, monitoring project name is -network-dashboard, ignored if monitoring_project_id variable is provided - v2 = true|false # Set to true to use V2 Cloud Functions environment - - vpc_connector_name = "" # when using vpc service controls, it is mandatory to use VPC Connectors, refer to [VPC-SC compliant Cloud Functions deployment documentation](https://cloud.google.com/functions/docs/securing/using-vpc-service-controls#deploy-compliant-functions) for a full reference of requirements. ``` - `terraform init` - `terraform apply` @@ -71,8 +69,6 @@ Note that metrics are created in the cloud-function/metrics.yaml file. You can a - The CF assumes global routing is ON, this impacts dynamic routes usage calculation - The CF assumes custom routes importing/exporting is ON, this impacts static and dynamic routes usage calculation - The CF assumes all networks in peering groups have the same global routing and custom routes sharing configuration -- When using VPC-SC, it is assumed that exists before the CF deployment starts -- If provided, is assumed to exist before the CF deployment starts ## Next steps and ideas In a future release, we could support: diff --git a/blueprints/cloud-operations/network-dashboard/variables.tf b/blueprints/cloud-operations/network-dashboard/variables.tf index 708ddc33c3..6100d4a7d9 100644 --- a/blueprints/cloud-operations/network-dashboard/variables.tf +++ b/blueprints/cloud-operations/network-dashboard/variables.tf @@ -57,6 +57,7 @@ variable "organization_id" { variable "prefix" { description = "Customer name to use as prefix for monitoring project" + default = "mon" }