From 7d231b25b7112cb53ecb6ad3138583892a97a71d Mon Sep 17 00:00:00 2001 From: Mariia Shytse Date: Mon, 14 Apr 2025 16:11:42 +0300 Subject: [PATCH 1/2] =?UTF-8?q?=F0=9F=91=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main/temp/main.tf | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/main/temp/main.tf b/main/temp/main.tf index 28c197a9..2f0589d3 100644 --- a/main/temp/main.tf +++ b/main/temp/main.tf @@ -20,4 +20,6 @@ variable "nested_object" { "smth.w.dot.and.hash#" = 123 } } -} \ No newline at end of file +} + +# PR comment From b549e7c9d0163ba3064719443871b769f1747494 Mon Sep 17 00:00:00 2001 From: Mariia Shytse Date: Mon, 14 Apr 2025 17:35:03 +0300 Subject: [PATCH 2/2] Update main.tf --- main/temp/main.tf | 26 +++----------------------- 1 file changed, 3 insertions(+), 23 deletions(-) diff --git a/main/temp/main.tf b/main/temp/main.tf index 2f0589d3..57ca1209 100644 --- a/main/temp/main.tf +++ b/main/temp/main.tf @@ -1,25 +1,5 @@ -module "smth_from_git" { - source = "github.com/aleatoricmbnt/flat/" -} - - -resource "terraform_data" "multiple_triggers" { - triggers_replace = [ var.list_of_tags, var.nested_object ] -} - -variable "list_of_tags" { - default = { - "tag.with.dot" = "s:://" - "slash/suffix" = "f" - } -} - -variable "nested_object" { - default = { - upper_level = { - "smth.w.dot.and.hash#" = 123 - } +resource "random_pet" "run_from_vcs" { + keepers = { + timestamp = timestamp() } } - -# PR comment