From 0dab8dfda5fe93af88e1be9d3b440c344d942c2e Mon Sep 17 00:00:00 2001 From: Yulei Liu Date: Fri, 10 Jan 2025 17:29:24 +1100 Subject: [PATCH 1/2] init commit --- vcs-connected-workspaces.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vcs-connected-workspaces.tf b/vcs-connected-workspaces.tf index 1e11658..a95a07c 100644 --- a/vcs-connected-workspaces.tf +++ b/vcs-connected-workspaces.tf @@ -9,7 +9,7 @@ locals { module "vcs-connected-workspace" { source = "ausmartway/vcs-connected-workspace/tfe" - version = "0.1.1" + version = "0.1.2" # insert the 5 required variables here for_each = local.inputvcsworkspacemap organization = var.organization From 2a507ee23dfa123d623b5568fc29292bf9f42764 Mon Sep 17 00:00:00 2001 From: Yulei Liu Date: Fri, 10 Jan 2025 17:36:07 +1100 Subject: [PATCH 2/2] upgrade non-vcs-connected-workspace version --- non-vcs-workspaces.tf | 23 +---------------------- 1 file changed, 1 insertion(+), 22 deletions(-) diff --git a/non-vcs-workspaces.tf b/non-vcs-workspaces.tf index 1e5cca4..12a2422 100644 --- a/non-vcs-workspaces.tf +++ b/non-vcs-workspaces.tf @@ -9,7 +9,7 @@ locals { module "non-vcs-connected-workspace" { source = "ausmartway/non-vcs-connected-workspace/tfe" - version = "0.1.1" + version = "0.1.2" for_each = local.inputworkspacemap # insert the 4 required variables here organization = var.organization @@ -19,24 +19,3 @@ module "non-vcs-connected-workspace" { tags = each.value.tags github_owner = "ausmartway" } - - -//Create workspace per yaml file -# resource "tfe_workspace" "workspace" { -# for_each = local.inputworkspacemap -# allow_destroy_plan = true -# auto_apply = true -# description = each.value.name -# execution_mode = "remote" -# file_triggers_enabled = false -# global_remote_state = false -# name = each.value.name -# organization = var.organization -# queue_all_runs = false -# remote_state_consumer_ids = [] -# speculative_enabled = false -# structured_run_output_enabled = true -# tag_names = each.value.tags -# terraform_version = each.value.version -# trigger_prefixes = [] -# }