Skip to content

Commit

Permalink
[AUTOMATED] Update terraform-null-label versions to support Terraform…
Browse files Browse the repository at this point in the history
… 0.13 (#73)
  • Loading branch information
Gowiem authored Aug 18, 2020
1 parent 6418f61 commit 986fade
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion examples/complete/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ provider "aws" {
}

module "label" {
source = "git::https://github.com/cloudposse/terraform-null-label.git?ref=tags/0.15.0"
source = "git::https://github.com/cloudposse/terraform-null-label.git?ref=tags/0.17.0"
namespace = var.namespace
name = var.name
stage = var.stage
Expand Down
8 changes: 4 additions & 4 deletions main.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module "default_label" {
source = "git::https://github.com/cloudposse/terraform-null-label.git?ref=tags/0.16.0"
source = "git::https://github.com/cloudposse/terraform-null-label.git?ref=tags/0.17.0"
enabled = var.enabled
attributes = var.attributes
delimiter = var.delimiter
Expand All @@ -11,21 +11,21 @@ module "default_label" {
}

module "task_label" {
source = "git::https://github.com/cloudposse/terraform-null-label.git?ref=tags/0.16.0"
source = "git::https://github.com/cloudposse/terraform-null-label.git?ref=tags/0.17.0"
enabled = var.enabled && length(var.task_role_arn) == 0
context = module.default_label.context
attributes = compact(concat(var.attributes, ["task"]))
}

module "service_label" {
source = "git::https://github.com/cloudposse/terraform-null-label.git?ref=tags/0.16.0"
source = "git::https://github.com/cloudposse/terraform-null-label.git?ref=tags/0.17.0"
enabled = var.enabled
context = module.default_label.context
attributes = compact(concat(var.attributes, ["service"]))
}

module "exec_label" {
source = "git::https://github.com/cloudposse/terraform-null-label.git?ref=tags/0.16.0"
source = "git::https://github.com/cloudposse/terraform-null-label.git?ref=tags/0.17.0"
enabled = var.enabled && length(var.task_exec_role_arn) == 0
context = module.default_label.context
attributes = compact(concat(var.attributes, ["exec"]))
Expand Down

0 comments on commit 986fade

Please sign in to comment.