From 615bb25e6d77c99cfadbea52d970ac77479cd3fd Mon Sep 17 00:00:00 2001 From: aleatoricmbnt Date: Wed, 8 Oct 2025 16:37:44 +0300 Subject: [PATCH 1/3] CHanged no_vars --- main/no_vars/main.tf | 1 + 1 file changed, 1 insertion(+) diff --git a/main/no_vars/main.tf b/main/no_vars/main.tf index e4cc0324..7f2fc057 100644 --- a/main/no_vars/main.tf +++ b/main/no_vars/main.tf @@ -5,5 +5,6 @@ resource "null_resource" "no_vars" { } resource "terraform_data" "new" { + count = 2 input = "static" } \ No newline at end of file From d69e4022da58d055909519134216f5454aebec1d Mon Sep 17 00:00:00 2001 From: aleatoricmbnt Date: Wed, 8 Oct 2025 16:38:32 +0300 Subject: [PATCH 2/3] CHanged local_wait --- main/local_wait/main.tf | 36 ------------------------------------ 1 file changed, 36 deletions(-) diff --git a/main/local_wait/main.tf b/main/local_wait/main.tf index f2554e52..7a157034 100644 --- a/main/local_wait/main.tf +++ b/main/local_wait/main.tf @@ -1,41 +1,5 @@ -variable "sleep_time" { - default = 1 -} - -resource "null_resource" "nr" { - triggers = { - trigger = timestamp() - } - provisioner "local-exec" { - command = "sleep ${var.sleep_time}" - } -} - resource "random_pet" "rp" { keepers = { keeper = timestamp() } } - -output "sleep_time" { - value = var.sleep_time - sensitive = false -} - -output "long" { - value = "The Adepta Sororitas, colloquially called the 'Sisterhood', whose military arm is also known as the Sisters of Battle and formerly as the Daughters of the Emperor, are an all-female division of the Imperium of Man's state church known as the Ecclesiarchy or, more formally, as the Adeptus Ministorum. The Sisterhood's Orders Militant serve as the Ecclesiarchy's armed forces, mercilessly rooting out spiritual corruption and heresy within Humanity and every organisation of the Adeptus Terra. There is naturally some overlap between the duties of the Sisterhood and the Imperial Inquisition; for this reason, although the Inquisition and the Sisterhood remain entirely separate organisations, the Orders Militant of the Adepta Sororitas also act as the Chamber Militant of the Inquisition's Ordo Hereticus. The Adepta Sororitas and the Sisters of Battle are commonly regarded as the same organisation, but the latter title technically refers only to the Orders Militant of the Adepta Sororitas, the best-known part of the organisation to the Imperial public." -} - -output "sensitive" { - value = "Sensitive value that shouldn't be exposed" - description = "Sensitive output" - sensitive = true -} - -output "run_time" { - value = timestamp() -} - -output "workspace_name" { - value = terraform.workspace -} \ No newline at end of file From 97a24df41ba910b11f516180dff132eb75f1946d Mon Sep 17 00:00:00 2001 From: aleatoricmbnt Date: Wed, 8 Oct 2025 16:38:51 +0300 Subject: [PATCH 3/3] CHanged ip-output --- main/ip-output/main.tf | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/main/ip-output/main.tf b/main/ip-output/main.tf index 21ad281e..f013f4c9 100644 --- a/main/ip-output/main.tf +++ b/main/ip-output/main.tf @@ -14,6 +14,4 @@ data "local_file" "read_ip" { output "scalr_ip" { value = "Current instance IP is: ${data.local_file.read_ip.content}" -} - -# comment \ No newline at end of file +} \ No newline at end of file