Skip to content

Commit 678cac6

Browse files
author
Ben Fortuna
committed
Fixed syntax
1 parent 73b313a commit 678cac6

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ clean:
1212
test:
1313
$(TERRAFORM) init && $(TERRAFORM) validate
1414

15+
nginx:
16+
$(TERRAFORM) init modules/nginx && $(TERRAFORM) plan modules/nginx
17+
1518
docs:
1619
docker run --rm -v "${PWD}:/work" tmknom/terraform-docs markdown ./ >./README.md
1720

main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ resource "aws_ecr_lifecycle_policy" "untagged_images" {
1717
{
1818
"rules": [
1919
{
20-
"rulePriority: 1,
20+
"rulePriority": 1,
2121
"description": "Remove untagged images older than ${var.untagged_image_expiry_days} days",
2222
"selection": {
2323
"tagStatus": "untagged",
2424
"countType": "sinceImagePushed",
2525
"countUnit": "days",
26-
"countNumber: ${var.untagged_image_expiry_days}
26+
"countNumber": ${var.untagged_image_expiry_days}
2727
},
2828
"action": {
2929
"type": "expire"

0 commit comments

Comments
 (0)