-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tf
100 lines (84 loc) · 2.02 KB
/
main.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
terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 3.45"
}
}
}
provider "aws" {
alias = "sa_east_1"
region = "sa-east-1"
}
locals {
any_host = ["0.0.0.0/0"]
}
data "aws_availability_zones" "all" {}
resource "aws_security_group" "instance" {
name = var.name
ingress {
from_port = var.server_port
to_port = var.server_port
protocol = "tcp"
cidr_blocks = local.any_host
}
}
resource "aws_launch_configuration" "example" {
image_id = var.ami_code
instance_type = "t2.micro"
security_groups = [aws_security_group.instance.id]
user_data = <<-EOF
#!/bin/bash
echo "Hello, World!" > index.html
nohup busybox httpd -f -p ${var.server_port} &
EOF
lifecycle {
create_before_destroy = true
}
}
resource "aws_autoscaling_group" "exampe" {
launch_configuration = aws_launch_configuration.example.id
availability_zones = data.aws_availability_zones.all.names
min_size = 2
max_size = 4
load_balancers = [aws_elb.example.name]
health_check_type = "ELB"
tag {
key = "Name"
value = var.name
propagate_at_launch = true
}
}
resource "aws_security_group" "elb" {
name = "terralearning-example-elb"
egress {
from_port = 0
to_port = 0
protocol = -1
cidr_blocks = local.any_host
}
ingress {
from_port = 80
to_port = 80
protocol = "tcp"
cidr_blocks = local.any_host
}
}
resource "aws_elb" "example" {
name = var.name
security_groups = [aws_security_group.elb.id]
availability_zones = data.aws_availability_zones.all.names
health_check {
target = "HTTP:${var.server_port}/"
interval = 30
timeout = 3
healthy_threshold = 2
unhealthy_threshold = 2
}
listener {
lb_port = 80
lb_protocol = "http"
instance_port = var.server_port
instance_protocol = "http"
}
}