Skip to content

Commit 21842ce

Browse files
author
Steven Nemetz
committed
Fix Circle badge in README. Fix formatting
1 parent 0d69a7d commit 21842ce

File tree

2 files changed

+12
-8
lines changed

2 files changed

+12
-8
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ Balancer (ALB/NLB). Available through the [terraform registry](https://registry.
77

88
| Branch | Build status |
99
| --- | --- |
10-
| master | [![CircleCI](https://circleci.com/gh/devops-workflow/terraform-aws-alb.svg?style=svg)](https://circleci.com/gh/devops-workflow/terraform-aws-alb) |
11-
| master | [![TravisCI](https://travis-ci.org/terraform-aws-modules/terraform-aws-alb.svg?branch=master)](https://travis-ci.org/terraform-aws-modules/terraform-aws-alb) |
10+
| master | [![CircleCI](https://circleci.com/gh/devops-workflow/terraform-aws-lb.svg?style=svg)](https://circleci.com/gh/devops-workflow/terraform-aws-lb) |
11+
| master (upstream) | [![TravisCI](https://travis-ci.org/terraform-aws-modules/terraform-aws-alb.svg?branch=master)](https://travis-ci.org/terraform-aws-modules/terraform-aws-alb) |
1212

1313
## Assumptions
1414
* You want to create a set of resources for the ALB: namely an associated target group and listener.

main.tf

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,23 +20,26 @@ module "enable_logging" {
2020
#source = "devops-workflow/boolean/local"
2121
#version = "0.1.0"
2222
#source = "git::https://github.com/WisePricer/terraform-local-boolean.git?ref=tags/v0.1.1"
23-
source = "git::https://github.com/WisePricer/terraform-local-boolean.git"
24-
value = "${var.enable_logging}"
23+
source = "git::https://github.com/WisePricer/terraform-local-boolean.git"
24+
25+
value = "${var.enable_logging}"
2526
}
2627

2728
module "enabled" {
2829
#source = "devops-workflow/boolean/local"
2930
#version = "0.1.0"
3031
#source = "git::https://github.com/WisePricer/terraform-local-boolean.git?ref=tags/v0.1.1"
31-
source = "git::https://github.com/WisePricer/terraform-local-boolean.git"
32-
value = "${var.enabled}"
32+
source = "git::https://github.com/WisePricer/terraform-local-boolean.git"
33+
34+
value = "${var.enabled}"
3335
}
3436

3537
module "label" {
3638
#source = "devops-workflow/label/local"
3739
#version = "0.1.2"
3840
#source = "git::https://github.com/WisePricer/terraform-local-label.git?ref=tags/v0.1.3"
39-
source = "git::https://github.com/WisePricer/terraform-local-label.git"
41+
source = "git::https://github.com/WisePricer/terraform-local-label.git"
42+
4043
organization = "${var.organization}"
4144
name = "${var.name}"
4245
namespace-env = "${var.namespace-env}"
@@ -53,7 +56,8 @@ module "log_bucket" {
5356
#source = "devops-workflow/label/local"
5457
#version = "0.1.2"
5558
#source = "git::https://github.com/WisePricer/terraform-local-label.git?ref=tags/v0.1.3"
56-
source = "git::https://github.com/WisePricer/terraform-local-label.git"
59+
source = "git::https://github.com/WisePricer/terraform-local-label.git"
60+
5761
organization = "${var.organization}"
5862
name = "${var.log_bucket_name}"
5963
namespace-env = true

0 commit comments

Comments
 (0)