-
Notifications
You must be signed in to change notification settings - Fork 80
/
Copy pathRishika-850499.tf.txt
114 lines (58 loc) · 1.56 KB
/
Rishika-850499.tf.txt
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
variables.tf
variable "aws_access_key" {}
variable "aws_secret_key" {}
variable "aws_region" {
default = "us-east-1"
}
----------------------------------------
main.tf
provider "aws" {
access_key = "${var.aws_access_key}"
secret_key = "${var.aws_secret_key}"
region = “${var.aws_region}”
}
resource "aws_instance" "test"{
ami=" "
intstance_type="t2.micro"
key_name = "${aws_key_pair.authentication.id}"
vpc_security_group_ids = ["${aws_security_group.elb.id}"]
subnet_id = "${aws_subnet.default.id}"
provisioner "remote-exec" {
inline = [
"sudo apt-get -y install nginx",
"sudo apt-get -y upadate",
]
}
}
resource "aws_vpc" "eg" {
cidr_block = [" 1.0/0.0/24"]
}
resource "aws_subnet" "default" {
vpc_id = "${aws_vpc.eg.id}"
cidr_block = ["1.0/0.0/24 "]
}
resource "aws_security_group" "elb" {
vpc_id = "${aws_vpc.eg.id}"
ingress {
from_port = 80
to_port = 80
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
}
egress {
from_port = 0
to_port = 0
protocol = "-1"
cidr_blocks = ["0.0.0.0/0"]
}
}
resource "aws_elb" "ser" {
subnets = ["${aws_subnet.default.id}"]
security_groups = ["${aws_security_group.elb.id}"]
instances = ["${aws_instance.ser.id}"]
}
}
resource "aws_key_pair" "authentication" {
key_name = "${var.key_name}"
public_key = "${file(var.public_key_path)}"
}