google_psc_to_elastic/variables.tf (21 lines of code) (raw):
variable "gcp_region" {
description = "GCP region"
type = string
}
variable "name" {
description = "GCP project name"
type = string
}
variable "network_name" {
description = "VPC network name"
type = string
}
variable "project_id_for_network" {
description = "The project ID from which to retrieve the data of a network or subnet"
type = string
default = ""
}
variable "subnetwork_name" {
description = "VPC subnetwork name"
type = string
}