Skip to content

Commit 8e1e74f

Browse files
author
Connor Bell
authored
Bump null-label version to support Terraform 0.13 (#94)
## what * Bumped the pinned version of null-label to the version that supports Terraform 0.13 ## why * Module doesn't work on 0.13 without this change :)
1 parent 537bf7b commit 8e1e74f

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ locals {
2323
}
2424

2525
module "label" {
26-
source = "git::https://github.com/cloudposse/terraform-null-label.git?ref=tags/0.16.0"
26+
source = "git::https://github.com/cloudposse/terraform-null-label.git?ref=tags/0.17.0"
2727
attributes = var.attributes
2828
namespace = var.namespace
2929
environment = var.environment

nat-gateway.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module "nat_label" {
2-
source = "git::https://github.com/cloudposse/terraform-null-label.git?ref=tags/0.16.0"
2+
source = "git::https://github.com/cloudposse/terraform-null-label.git?ref=tags/0.17.0"
33
enabled = var.enabled
44
context = module.label.context
55
attributes = distinct(compact(concat(module.label.attributes, ["nat"])))

nat-instance.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module "nat_instance_label" {
22
enabled = var.enabled
3-
source = "git::https://github.com/cloudposse/terraform-null-label.git?ref=tags/0.16.0"
3+
source = "git::https://github.com/cloudposse/terraform-null-label.git?ref=tags/0.17.0"
44
context = module.label.context
55
attributes = distinct(compact(concat(module.label.attributes, ["nat", "instance"])))
66
}

private.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module "private_label" {
2-
source = "git::https://github.com/cloudposse/terraform-null-label.git?ref=tags/0.16.0"
2+
source = "git::https://github.com/cloudposse/terraform-null-label.git?ref=tags/0.17.0"
33
enabled = var.enabled
44
context = module.label.context
55
attributes = compact(concat(module.label.attributes, ["private"]))

public.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module "public_label" {
2-
source = "git::https://github.com/cloudposse/terraform-null-label.git?ref=tags/0.16.0"
2+
source = "git::https://github.com/cloudposse/terraform-null-label.git?ref=tags/0.17.0"
33
enabled = var.enabled
44
context = module.label.context
55
attributes = compact(concat(module.label.attributes, ["public"]))

0 commit comments

Comments
 (0)