From 8926aecbbc9a80c5eb62380d486a6a33b0666d1e Mon Sep 17 00:00:00 2001 From: Aleksandra Fromm Date: Wed, 24 Jan 2024 15:09:09 +0100 Subject: [PATCH] Fix release output --- .github/workflows/auto-release.yml | 2 +- modules/cloudwatch_log_groups/variables.tf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/auto-release.yml b/.github/workflows/auto-release.yml index 82f2cddd..41334479 100644 --- a/.github/workflows/auto-release.yml +++ b/.github/workflows/auto-release.yml @@ -32,4 +32,4 @@ jobs: curl -X POST https://api.github.com/repos/dfds/infrastructure-blueprints/dispatches \ -H 'Accept: application/vnd.github.everest-preview+json' \ -u ${{ secrets.AUTH_TOKEN }} \ - --data '{"event_type": "trigger-workflow", "client_payload": { "release_tag": "${{ github.release.outputs.tag_name }}" }}' + --data '{"event_type": "trigger-workflow", "client_payload": { "release_tag": "${{ steps.release.outputs.tag_name }}" }}' diff --git a/modules/cloudwatch_log_groups/variables.tf b/modules/cloudwatch_log_groups/variables.tf index 66424188..15c17f4a 100644 --- a/modules/cloudwatch_log_groups/variables.tf +++ b/modules/cloudwatch_log_groups/variables.tf @@ -34,7 +34,7 @@ variable "cw_log_group_skip_destroy_on_deletion" { } variable "tags" { - description = "A mapping of tags to assign to all resources." + description = "A mapping of tags to assign to all resources" type = map(string) default = {} }