Skip to content

Commit d60ec4f

Browse files
author
Steven Nemetz
committed
Change module sources to WisePricer
1 parent 004f320 commit d60ec4f

File tree

1 file changed

+12
-8
lines changed

1 file changed

+12
-8
lines changed

main.tf

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,20 +17,23 @@
1717
# Multiple LBs ?
1818

1919
module "enable_logging" {
20-
source = "devops-workflow/boolean/local"
21-
version = "0.1.0"
20+
#source = "devops-workflow/boolean/local"
21+
#version = "0.1.0"
22+
source = "git::https://github.com/WisePricer/terraform-local-boolean.git?ref=tags/v0.1.1"
2223
value = "${var.enable_logging}"
2324
}
2425

2526
module "enabled" {
26-
source = "devops-workflow/boolean/local"
27-
version = "0.1.0"
27+
#source = "devops-workflow/boolean/local"
28+
#version = "0.1.0"
29+
source = "git::https://github.com/WisePricer/terraform-local-boolean.git?ref=tags/v0.1.1"
2830
value = "${var.enabled}"
2931
}
3032

3133
module "label" {
32-
source = "devops-workflow/label/local"
33-
version = "0.1.2"
34+
#source = "devops-workflow/label/local"
35+
#version = "0.1.2"
36+
source = "git::https://github.com/WisePricer/terraform-local-label.git?ref=tags/v0.1.3"
3437
organization = "${var.organization}"
3538
name = "${var.name}"
3639
namespace-env = "${var.namespace-env}"
@@ -44,8 +47,9 @@ module "label" {
4447
# TODO: need to support from var both basename and a complete name
4548
# may have 1 log bucket for many apps
4649
module "log_bucket" {
47-
source = "devops-workflow/label/local"
48-
version = "0.1.2"
50+
#source = "devops-workflow/label/local"
51+
#version = "0.1.2"
52+
source = "git::https://github.com/WisePricer/terraform-local-label.git?ref=tags/v0.1.3"
4953
organization = "${var.organization}"
5054
name = "${var.log_bucket_name}"
5155
namespace-env = true

0 commit comments

Comments
 (0)