VPC module - PSA configurable service producer (#2190)

* added configurable service provider for PSA in VPC module

* fmt

* readme update

* description fix based on PR comment

* readme regenerated
This commit is contained in:
Amela Spica
2024-04-02 20:23:25 +02:00
committed by GitHub
parent da4e5acd46
commit fb4a661f54
3 changed files with 17 additions and 16 deletions

View File

@@ -175,12 +175,13 @@ variable "project_id" {
}
variable "psa_config" {
description = "The Private Service Access configuration for Service Networking."
description = "The Private Service Access configuration."
type = object({
ranges = map(string)
export_routes = optional(bool, false)
import_routes = optional(bool, false)
peered_domains = optional(list(string), [])
ranges = map(string)
export_routes = optional(bool, false)
import_routes = optional(bool, false)
peered_domains = optional(list(string), [])
service_producer = optional(string, "servicenetworking.googleapis.com")
})
default = null
}