Skip to content

Commit 483cf6a

Browse files
committed
fix: TT-509 including empty line in all files
1 parent 6cc64e6 commit 483cf6a

File tree

9 files changed

+7
-8
lines changed

9 files changed

+7
-8
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,4 +57,4 @@ Thumbs.db
5757
.env
5858

5959
# Terraform files
60-
**/.terraform**
60+
**/.terraform**

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,4 @@ RUN touch /var/run/nginx.pid && chown -R ${USERNAME}:${USERNAME} /var/run/nginx.
3939

4040
USER ${USERNAME}
4141

42-
EXPOSE 80
42+
EXPOSE 80

infraestructure/prod.tfvars

Lines changed: 0 additions & 2 deletions
This file was deleted.

infraestructure/stage.tfvars

Lines changed: 0 additions & 2 deletions
This file was deleted.
File renamed without changes.

infrastructure/prod.tfvars

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
service_plan_size = "S1"
2+
service_plan_tier = "Standard"

infrastructure/stage.tfvars

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
service_plan_size = "S1"
2+
service_plan_tier = "Standard"

infraestructure/variables.tf renamed to infrastructure/variables.tf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,3 @@ variable "service_plan_tier" {
1515
type = string
1616
description = "Specifies the tier of the service plan. Tier is the pricing plan of the service plan resource."
1717
}
18-

nginx.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ server {
99
location / {
1010
try_files $uri /index.html;
1111
}
12-
}
12+
}

0 commit comments

Comments
 (0)