Skip to content

Commit

Permalink
fixed null provider version
Browse files Browse the repository at this point in the history
  • Loading branch information
velotioaastha committed Dec 16, 2024
1 parent 071dd15 commit 3531658
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
5 changes: 2 additions & 3 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -451,10 +451,9 @@ locals {
}

resource "null_resource" "always_sleep" {
count = var.create_private_link ? 1 : 0
# A dynamic trigger that changes every time Terraform runs
count = var.create_private_link ? 1 : 0
triggers = {
always_run = timestamp() # Forces the resource to always run
always_run = timestamp()
}

provisioner "local-exec" {
Expand Down
4 changes: 4 additions & 0 deletions versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,9 @@ terraform {
source = "hashicorp/helm"
version = "~> 2.10"
}
null = {
source = "hashicorp/null"
version = "3.2.2"
}
}
}

0 comments on commit 3531658

Please sign in to comment.