diff --git a/blueprints/cloud-operations/network-dashboard/README.md b/blueprints/cloud-operations/network-dashboard/README.md index ca1c80dc9..777f89a38 100644 --- a/blueprints/cloud-operations/network-dashboard/README.md +++ b/blueprints/cloud-operations/network-dashboard/README.md @@ -26,7 +26,8 @@ Clone this repository, then go through the following steps to create resources: # 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 + cf_version = V1|V2 + # Set to V2 to use V2 Cloud Functions environment ``` - `terraform init` - `terraform apply` @@ -95,7 +96,7 @@ If you are interested in this and/or would like to contribute, please contact le | [prefix](variables.tf#L50) | Customer name to use as prefix for monitoring project | | ✓ | | | [cf_version](variables.tf#L21) | Cloud Function version 2nd Gen or 1st Gen. Possible options: 'V1' or 'V2'.Use CFv2 if your Cloud Function timeouts after 9 minutes. By default it is using CFv1. | | | V1 | | [monitored_folders_list](variables.tf#L30) | ID of the projects to be monitored (where limits and quotas data will be pulled) | list(string) | | [] | -| [monitoring_project_id](variables.tf#L41) | Monitoring project where the dashboard will be created and the solution deployed; a project will be created if set to empty string, if metrics_project_id is provided, metrics and dashboard will be deployed there | | | | +| [monitoring_project_id](variables.tf#L41) | Monitoring project where the dashboard will be created and the solution deployed; a project will be created if set to empty string | | | | | [project_monitoring_services](variables.tf#L54) | Service APIs enabled in the monitoring project if it will be created. | | | […] | | [region](variables.tf#L76) | Region used to deploy the cloud functions and scheduler | | | europe-west1 | | [schedule_cron](variables.tf#L81) | Cron format schedule to run the Cloud Function. Default is every 10 minutes. | | | */10 * * * * | diff --git a/blueprints/cloud-operations/network-dashboard/variables.tf b/blueprints/cloud-operations/network-dashboard/variables.tf index 1f07116aa..de32ab1e0 100644 --- a/blueprints/cloud-operations/network-dashboard/variables.tf +++ b/blueprints/cloud-operations/network-dashboard/variables.tf @@ -39,7 +39,7 @@ variable "monitored_projects_list" { } variable "monitoring_project_id" { - description = "Monitoring project where the dashboard will be created and the solution deployed; a project will be created if set to empty string, if metrics_project_id is provided, metrics and dashboard will be deployed there " + description = "Monitoring project where the dashboard will be created and the solution deployed; a project will be created if set to empty string" default = "" }