-
Notifications
You must be signed in to change notification settings - Fork 0
/
terraform-webserver.tf
124 lines (102 loc) · 2.91 KB
/
terraform-webserver.tf
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
112
113
114
115
116
117
118
119
120
121
122
123
124
# Elemets of the cloud such as virtual servers,
# networks, firewall rules are created as resources
# syntax is: resource RESOURCE_TYPE RESOURCE_NAME
# https://www.terraform.io/docs/configuration/resources.html
resource "google_compute_firewall" "backend_rules" {
name = "backend-rules"
network = "default"
allow {
protocol = "tcp"
ports = ["80", "443", "5432"]
}
source_ranges = ["0.0.0.0/0"]
target_tags = ["web", "dbservers"]
}
# create the backend server 1
resource "google_compute_instance" "webserver1" {
name = "web1"
machine_type = "${var.GCP_MACHINE_TYPE}"
zone = "${var.GCP_REGION}"
boot_disk {
initialize_params {
# image list can be found at:
# https://cloud.google.com/compute/docs/images
image = "ubuntu-os-cloud/ubuntu-1604-lts"
}
}
network_interface {
network = "default"
access_config {
}
}
tags = ["web"]
}
output "web1" {
value = "${join(" ", google_compute_instance.webserver1.*.network_interface.0.access_config.0.assigned_nat_ip)}"
}
# create the backend server 2
resource "google_compute_instance" "webserver2" {
name = "web2"
machine_type = "${var.GCP_MACHINE_TYPE}"
zone = "${var.GCP_REGION}"
boot_disk {
initialize_params {
# image list can be found at:
# https://cloud.google.com/compute/docs/images
image = "ubuntu-os-cloud/ubuntu-1604-lts"
}
}
network_interface {
network = "default"
access_config {
}
}
tags = ["web"]
}
output "web2" {
value = "${join(" ", google_compute_instance.webserver2.*.network_interface.0.access_config.0.assigned_nat_ip)}"
}
# create the backend server 3
resource "google_compute_instance" "webserver3" {
name = "web3"
machine_type = "${var.GCP_MACHINE_TYPE}"
zone = "${var.GCP_REGION}"
boot_disk {
initialize_params {
# image list can be found at:
# https://cloud.google.com/compute/docs/images
image = "ubuntu-os-cloud/ubuntu-1604-lts"
}
}
network_interface {
network = "default"
access_config {
}
}
tags = ["web"]
}
output "web3" {
value = "${join(" ", google_compute_instance.webserver3.*.network_interface.0.access_config.0.assigned_nat_ip)}"
}
# create the backend db server
resource "google_compute_instance" "dbserver" {
name = "dbserver"
machine_type = "${var.GCP_MACHINE_TYPE}"
zone = "${var.GCP_REGION}"
boot_disk {
initialize_params {
# image list can be found at:
# https://cloud.google.com/compute/docs/images
image = "ubuntu-os-cloud/ubuntu-1604-lts"
}
}
network_interface {
network = "default"
access_config {
}
}
tags = ["dbservers"]
}
output "dbserver" {
value = "${join(" ", google_compute_instance.dbserver.*.network_interface.0.access_config.0.assigned_nat_ip)}"
}