-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathapp-servers.tf
79 lines (71 loc) · 2.2 KB
/
app-servers.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
/* Instance Profiles */
resource "aws_iam_instance_profile" "rancher_k8s_node_profile" {
name = "rancher_k8s_node_profile"
role = "${aws_iam_role.rancher-k8s-node-role.name}"
}
resource "aws_iam_instance_profile" "rancher_k8s_master_profile" {
name = "rancher_k8s_master_profile"
role = "${aws_iam_role.rancher-k8s-master-role.name}"
}
resource "aws_instance" "rancher-master" {
ami = "${lookup(var.amis, var.region)}"
instance_type = "${var.aws_machine_type}"
subnet_id = "${aws_subnet.public.id}"
vpc_security_group_ids = ["${aws_security_group.web.id}"]
key_name = "${aws_key_pair.deployer.key_name}"
source_dest_check = false
iam_instance_profile = "${aws_iam_instance_profile.rancher_k8s_master_profile.name}"
tags = {
Name = "aws-k8s-master"
Type = "rancher-k8s-master"
}
connection {
type = "ssh"
user = "ubuntu"
private_key = "${file("ssh/${aws_key_pair.deployer.key_name}")}"
timeout = "2m"
agent = false
}
provisioner "file" {
source = "scripts/install.sh"
destination = "/tmp/install.sh"
}
provisioner "remote-exec" {
inline = [
"chmod +x /tmp/install.sh",
"sudo /tmp/install.sh 0 ${aws_instance.rancher-master.public_ip} ${var.rs_proj_name}"
]
}
}
/* k8s - nodes */
resource "aws_instance" "rancher-node" {
count = "${var.k8s_node_count}"
ami = "${lookup(var.amis, var.region)}"
instance_type = "${var.aws_machine_type}"
subnet_id = "${aws_subnet.public.id}"
vpc_security_group_ids = ["${aws_security_group.web.id}"]
key_name = "${aws_key_pair.deployer.key_name}"
source_dest_check = false
iam_instance_profile = "${aws_iam_instance_profile.rancher_k8s_node_profile.name}"
tags = {
Name = "aws-k8s-node.${count.index + 1}"
Type = "rancher-k8s-node"
}
connection {
type = "ssh"
user = "ubuntu"
private_key = "${file("ssh/${aws_key_pair.deployer.key_name}")}"
timeout = "2m"
agent = false
}
provisioner "file" {
source = "scripts/install.sh"
destination = "/tmp/install.sh"
}
provisioner "remote-exec" {
inline = [
"chmod +x /tmp/install.sh",
"sudo /tmp/install.sh ${count.index + 1} ${aws_instance.rancher-master.public_ip} ${var.rs_proj_name}"
]
}
}