From c793c0e0345147d0e7318a7035f0a2d245f83926 Mon Sep 17 00:00:00 2001 From: Arel Rabinowitz <30493345+RLRabinowitz@users.noreply.github.com> Date: Sun, 22 Dec 2024 19:47:34 +0200 Subject: [PATCH 1/5] Update main.tf --- null-with-sleep/main.tf | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/null-with-sleep/main.tf b/null-with-sleep/main.tf index 86fbb44..66bdb08 100644 --- a/null-with-sleep/main.tf +++ b/null-with-sleep/main.tf @@ -7,3 +7,7 @@ resource "null_resource" "null" { resource "null_resource" "null2" { } + +output "myoutput" { + value = null_resource.null1.id +} From f95dfd3cd2659257002c1fa648d614c5e430865b Mon Sep 17 00:00:00 2001 From: Arel Rabinowitz <30493345+RLRabinowitz@users.noreply.github.com> Date: Sun, 22 Dec 2024 19:48:56 +0200 Subject: [PATCH 2/5] Update main.tf --- null-with-sleep/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/null-with-sleep/main.tf b/null-with-sleep/main.tf index 66bdb08..45765d7 100644 --- a/null-with-sleep/main.tf +++ b/null-with-sleep/main.tf @@ -9,5 +9,5 @@ resource "null_resource" "null2" { } output "myoutput" { - value = null_resource.null1.id + value = null_resource.null.id } From 9ed1bb437665f05a54aa6bf53317067858a3e979 Mon Sep 17 00:00:00 2001 From: Arel Rabinowitz <30493345+RLRabinowitz@users.noreply.github.com> Date: Wed, 25 Dec 2024 17:10:13 +0200 Subject: [PATCH 3/5] Update main.tf --- null-with-sleep/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/null-with-sleep/main.tf b/null-with-sleep/main.tf index 45765d7..d8d13aa 100644 --- a/null-with-sleep/main.tf +++ b/null-with-sleep/main.tf @@ -8,6 +8,6 @@ resource "null_resource" "null" { resource "null_resource" "null2" { } -output "myoutput" { +output "myoutput2" { value = null_resource.null.id } From 59ddd1cddf62862e8a09c2c066ab7f486ee95f3d Mon Sep 17 00:00:00 2001 From: Arel Rabinowitz <30493345+RLRabinowitz@users.noreply.github.com> Date: Wed, 25 Dec 2024 17:11:00 +0200 Subject: [PATCH 4/5] Update main.tf --- null-with-sleep/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/null-with-sleep/main.tf b/null-with-sleep/main.tf index d8d13aa..a482b33 100644 --- a/null-with-sleep/main.tf +++ b/null-with-sleep/main.tf @@ -8,6 +8,6 @@ resource "null_resource" "null" { resource "null_resource" "null2" { } -output "myoutput2" { +output "myoutput23" { value = null_resource.null.id } From 499e4a7072f743ef6b3191b4205c2479f3447228 Mon Sep 17 00:00:00 2001 From: Arel Rabinowitz <30493345+RLRabinowitz@users.noreply.github.com> Date: Tue, 7 Jan 2025 15:42:34 +0200 Subject: [PATCH 5/5] Update main.tf --- null-with-sleep/main.tf | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/null-with-sleep/main.tf b/null-with-sleep/main.tf index a482b33..858630b 100644 --- a/null-with-sleep/main.tf +++ b/null-with-sleep/main.tf @@ -6,8 +6,17 @@ resource "null_resource" "null" { } resource "null_resource" "null2" { + triggers = { a = { k = null_resource.null.id } } } output "myoutput23" { value = null_resource.null.id } + +output "myoutput232" { + value = null_resource.null.id +} + +output "myoutput2323" { + value = null_resource.null.id +}