From 7f3cc3d7681f68d7c747b2d529a06a4a6c186a5f Mon Sep 17 00:00:00 2001 From: Mark Johnson <739719+virgofx@users.noreply.github.com> Date: Tue, 25 Feb 2025 22:42:34 -0800 Subject: [PATCH] chore: update terraform-module-releaser to v1.4.1 and add debug outputs; modify security group tags description --- .github/workflows/terraform-module-releaser.yml | 12 ++++++++++++ aws/vpc-endpoint/variables.tf | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/.github/workflows/terraform-module-releaser.yml b/.github/workflows/terraform-module-releaser.yml index 479004f..69e21d5 100644 --- a/.github/workflows/terraform-module-releaser.yml +++ b/.github/workflows/terraform-module-releaser.yml @@ -18,5 +18,17 @@ jobs: - name: Terraform Module Releaser uses: techpivot/terraform-module-releaser@v1 + id: release with: use-ssh-source-format: true + + - id: debug + name: Debug + run: | + echo '${{ toJSON(steps.release.outputs) }}' + echo ${{ steps.release.outputs.changed-module-names }} + echo ${{ steps.release.outputs.changed-module-paths }} + echo ${{ steps.release.outputs.changed-modules-map }} + echo ${{ steps.release.outputs.all-module-names }} + echo ${{ steps.release.outputs.all-module-paths }} + echo ${{ steps.release.outputs.all-modules-map }} diff --git a/aws/vpc-endpoint/variables.tf b/aws/vpc-endpoint/variables.tf index 7fb3c15..2345f67 100644 --- a/aws/vpc-endpoint/variables.tf +++ b/aws/vpc-endpoint/variables.tf @@ -59,7 +59,7 @@ variable "security_group_rules" { } variable "security_group_tags" { - description = "A map of additional tags to add to the security group created. Bump" + description = "A map of additional tags to add to the security group created. Bump 2" type = map(string) default = {} }