Newer
Older
variable "project_id" {
type = string
}
variable "region" {
}
### Network & Subnetwork
variable "vpc_network_name" {
}
variable "vpc_subnetwork_name" {
}
variable "vpc_private_ip_address_name" {
type = string
}
### Firewall
variable "fw_http_name" {
type = string
default = "fw-vpc-allow-http"
}
variable "fw_https_name" {
type = string
default = "fw-vpc-allow-https"
}
variable "fw_ssh_name" {
type = string
default = "fw-vpc-allow-ssh-from-iap"
}
### Router & Cloud NAT
variable "router_name" {
type = string
default = "router-vpc-name"
}
variable "cloud_nat_name" {
type = string
default = "cloud-nat-vpc-name"
}
### Kubernetes Cluster & Node Pool
variable "cluster_name" {
type = string
}
variable "node_pool_name" {
type = string
}
### Cloud SQL
variable "cloud_sql_name" {
type = string
}
### Memory Store
variable "memory_store_name" {
type = string