Skip to content

Commit 6271d08

Browse files
Run terraform fmt (#62)
1 parent 94d7413 commit 6271d08

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file.
33

44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
55

6+
## [1.1.3] - 2019-06-27
7+
8+
### Changed
9+
- Run `terraform fmt`.
10+
11+
612
## [1.1.2] - 2019-06-06
713

814
### Changed

cloudwatch.tf

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ resource "aws_cloudwatch_dashboard" "apiary_federation" {
4848
EOF
4949
}
5050

51-
5251
locals {
5352
alerts = [
5453
{
@@ -62,7 +61,7 @@ locals {
6261
namespace = "AWS/ECS"
6362
metric_name = "MemoryUtilization"
6463
threshold = "70"
65-
}
64+
},
6665
]
6766

6867
dimensions = [
@@ -73,11 +72,10 @@ locals {
7372
{
7473
ClusterName = "${local.instance_alias}"
7574
ServiceName = "${local.instance_alias}-service"
76-
}
75+
},
7776
]
7877
}
7978

80-
8179
resource "aws_cloudwatch_metric_alarm" "waggledance_alert" {
8280
count = "${length(local.alerts)}"
8381
alarm_name = "${lookup(local.alerts[count.index],"alarm_name")}"

0 commit comments

Comments
 (0)