-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path4-variable.tf
More file actions
111 lines (91 loc) · 2.29 KB
/
Copy path4-variable.tf
File metadata and controls
111 lines (91 loc) · 2.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
variable "project_id" {
description = "The Google Cloud project ID"
type = string
default = "gcp-mastery-495919"
}
variable "site_bucket_name" {
description = "GCS bucket that stores the React build artifact"
type = string
default = "gcp-mastery-495919-jjk-domain-site-artifacts"
}
variable "region" {
description = "The Google Cloud region"
type = string
default = "us-central1"
}
variable "zone" {
description = "Default Google Cloud zone"
type = string
default = "us-central1-a"
}
variable "bucket_location" {
description = "GCS bucket location"
type = string
default = "US"
}
variable "site_object" {
description = "GCS object path for the React build artifact"
type = string
default = "site-builds/site-build.tar.gz"
}
variable "site_title" {
description = "Runtime site title shown on the loading page"
type = string
default = "JJK Runtime Domain System"
}
variable "app_root" {
description = "Nginx web root for the React site"
type = string
default = "/var/www/jjk-domain-sites"
}
variable "network_name" {
description = "VPC network name"
type = string
default = "jjk-domain-vpc"
}
variable "public_subnet_1_cidr" {
description = "CIDR for public subnet 1"
type = string
default = "10.10.0.0/24"
}
variable "public_subnet_2_cidr" {
description = "CIDR for public subnet 2"
type = string
default = "10.10.1.0/24"
}
variable "private_subnet_1_cidr" {
description = "CIDR for private subnet 1"
type = string
default = "10.10.10.0/24"
}
variable "private_subnet_2_cidr" {
description = "CIDR for private subnet 2"
type = string
default = "10.10.20.0/24"
}
variable "machine_type" {
description = "Compute Engine machine type"
type = string
default = "e2-micro"
}
variable "boot_disk_size_gb" {
description = "Boot disk size for web servers"
type = number
default = 20
}
variable "gojo_zone" {
type = string
default = "us-central1-a"
}
variable "sukuna_zone" {
type = string
default = "us-central1-b"
}
variable "yuta_zone" {
type = string
default = "us-central1-c"
}
variable "higuruma_zone" {
type = string
default = "us-central1-f"
}