Fix missing service networking identity in project, PSA (#585)

* test

* test

* test

* fix

* tfdoc

* fix tests

* fix tests
This commit is contained in:
Ludovico Magnocavallo
2022-03-17 14:29:28 +01:00
committed by GitHub
parent 976eb9fe48
commit fef3ed8c93
18 changed files with 161 additions and 225 deletions

View File

@@ -109,14 +109,14 @@ variable "project_id" {
}
variable "psa_config" {
description = "The Private Service Access configuration."
type = map(object({
ranges = list(string) # CIDRs in the format x.x.x.x/yy
description = "The Private Service Access configuration for Service Networking."
type = object({
ranges = map(string)
routes = object({
export = bool
import = bool
})
}))
})
default = null
}