Newer
Older
variable "project_id" {
type = string
}
variable "region" {
}
### Network & Subnetwork
variable "vpc_network_name" {
type = string
default = "vpc-magento"
}
variable "vpc_subnetwork_name" {
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
}
variable "vpc_private_ip_address_name" {
type = string
default = "vpc-private-ip-magento"
}
### 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
default = "gke-magento"
}
variable "node_pool_name" {
type = string
default = "gke-preemptible-nodes-magento"
}
### Cloud SQL
variable "cloud_sql_name" {
type = string
default = "cloudsql-magento"
}
### Memory Store
variable "memory_store_name" {
type = string
default = "cloudsql-magento"
}