Allow universe-bound projects to exclude services (#2852)

* Allow universe-bound projects to exclude services

* Update README
This commit is contained in:
Julio Castillo
2025-01-30 08:48:58 +01:00
committed by GitHub
parent 4b9fd89642
commit c73035f4e5
7 changed files with 43 additions and 18 deletions

View File

@@ -250,10 +250,12 @@ variable "skip_delete" {
}
variable "universe" {
description = "GCP universe where deploy the project. This will be prepended to the project id."
type = string
default = ""
nullable = false
description = "GCP universe where to deploy the project. The prefix will be prepended to the project id."
type = object({
prefix = string
unavailable_services = optional(list(string), [])
})
default = null
}
variable "vpc_sc" {