added services to monitoring project

This commit is contained in:
Maurizio Noseda Pedraglio 2022-10-28 14:19:26 +02:00
parent 946868062c
commit 561e113f61
1 changed files with 8 additions and 1 deletions

View File

@ -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"
}
}