Skip to content

Commit e9b77b0

Browse files
committed
fmt
1 parent d2a2bf6 commit e9b77b0

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

aws/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ provider "aws" {
77
}
88

99
resource "aws_instance" "my_web_app" {
10-
ami = "ami-005e54dee72cc1d00"
10+
ami = "ami-005e54dee72cc1d00"
1111

1212
instance_type = "m3.xlarge" # <<<<<<<<<< Try changing this to m5.xlarge to compare the costs
1313

more_examples/main.tf

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@ resource "aws_s3_bucket" "screenshots_prod" {
2727
}
2828

2929
resource "aws_db_instance" "my_db" {
30-
identifier = "mysql57-extended"
31-
engine = "mysql"
32-
engine_version = "5.7.44"
33-
instance_class = "c5.2xlarge"
34-
allocated_storage = 20
35-
username = "admin"
36-
password = "yourpassword"
37-
db_name = "exampledb"
30+
identifier = "mysql57-extended"
31+
engine = "mysql"
32+
engine_version = "5.7.44"
33+
instance_class = "c5.2xlarge"
34+
allocated_storage = 20
35+
username = "admin"
36+
password = "yourpassword"
37+
db_name = "exampledb"
3838
publicly_accessible = false
3939
skip_final_snapshot = true
4040
deletion_protection = false
@@ -62,7 +62,7 @@ resource "aws_ecs_task_definition" "my_task" {
6262
family = "my-task"
6363
requires_compatibilities = ["FARGATE"]
6464
network_mode = "awsvpc"
65-
cpu = "1024" # 1 vCPU
65+
cpu = "1024" # 1 vCPU
6666
memory = "2048" # 2 GB
6767
execution_role_arn = "aws_iam_role.ecs_task_execution_role.arn"
6868

@@ -89,14 +89,14 @@ provider "azurerm" {
8989

9090
resource "azurerm_log_analytics_workspace" "azure_app1_logs" {
9191
name = "example-logs-1"
92-
location = "East US"
92+
location = "East US"
9393
resource_group_name = "example-rg"
9494
sku = "PerGB2018"
9595
}
9696

9797
resource "azurerm_log_analytics_workspace" "azure_app2_logs" {
9898
name = "example-logs-2"
99-
location = "East US"
99+
location = "East US"
100100
resource_group_name = "example-rg"
101101
sku = "PerGB2018"
102102
}

0 commit comments

Comments
 (0)