Skip to content

Commit 1211af8

Browse files
committed
terraform fmt over all files
1 parent 85dd71c commit 1211af8

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

aws_ec2_elb/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Create an EC2 instance in the public subnet
22
resource "aws_instance" "instance0" {
3-
ami = var.aws_ami_id
3+
ami = var.aws_ami_id
44
instance_type = "t3.micro"
55

66
network_interface {

aws_ec2_elb/network.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ resource "aws_route_table" "route_table" {
109109
lifecycle {
110110
create_before_destroy = true
111111
}
112-
112+
113113
depends_on = [aws_vpc.vpc0]
114114
}
115115

@@ -121,7 +121,7 @@ resource "aws_route" "public_route" {
121121
lifecycle {
122122
create_before_destroy = true
123123
}
124-
124+
125125
depends_on = [aws_route_table.route_table]
126126
}
127127

aws_ec2_elb/security.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ resource "aws_network_acl" "main" {
137137
from_port = 443
138138
to_port = 443
139139
}
140-
140+
141141
# for ssh access to ec2 instances
142142
ingress {
143143
protocol = "tcp"

0 commit comments

Comments
 (0)