Add PSA peered domains support to net-vpc (#1741)

* Add PSA peered domains support to `net-vpc`

* Fix tests
This commit is contained in:
Julio Castillo
2023-10-06 17:31:32 +02:00
committed by GitHub
parent ef290c1c8d
commit 9ab3b49f69
8 changed files with 69 additions and 40 deletions

View File

@@ -116,9 +116,10 @@ variable "project_id" {
variable "psa_config" {
description = "The Private Service Access configuration for Service Networking."
type = object({
ranges = map(string)
export_routes = optional(bool, false)
import_routes = optional(bool, false)
ranges = map(string)
export_routes = optional(bool, false)
import_routes = optional(bool, false)
peered_domains = optional(list(string), [])
})
default = null
}