diff --git a/blueprints/cloud-operations/network-dashboard/tests/variables.tf b/blueprints/cloud-operations/network-dashboard/tests/variables.tf index 5339712c..ec96f750 100644 --- a/blueprints/cloud-operations/network-dashboard/tests/variables.tf +++ b/blueprints/cloud-operations/network-dashboard/tests/variables.tf @@ -29,14 +29,21 @@ variable "prefix" { variable "project_vm_services" { description = "Service APIs enabled by default in new projects." default = [ + "cloudasset.googleapis.com", "cloudbilling.googleapis.com", + "cloudfunctions.googleapis.com", + "cloudscheduler.googleapis.com", "compute.googleapis.com", "logging.googleapis.com", "monitoring.googleapis.com", + "pubsub.googleapis.com", "servicenetworking.googleapis.com", + "storage-component.googleapis.com" ] } + + variable "region" { description = "Region used to deploy subnets" default = "europe-west1" @@ -45,4 +52,4 @@ variable "region" { variable "zone" { description = "Zone used to deploy vms" default = "europe-west1-b" -} \ No newline at end of file +}