Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: debugging outputs with changed module #12

Merged
merged 1 commit into from
Feb 26, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .github/workflows/terraform-module-releaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
2 changes: 1 addition & 1 deletion aws/vpc-endpoint/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {}
}