Fix confusion with tags on dogfood deploy workflow (#8964)

* Fix confusion with tags on dogfood deploy workflow

* Update .github/workflows/dogfood-deploy.yml

Co-authored-by: Michal Nicpon <39177923+michalnicp@users.noreply.github.com>

Co-authored-by: Michal Nicpon <39177923+michalnicp@users.noreply.github.com>
This commit is contained in:
Robert Fairburn 2022-12-08 12:11:33 -06:00 committed by GitHub
parent 111a633bd5
commit 41feacad4d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,8 +3,8 @@ name: Deploy Dogfood Environment
on:
workflow_dispatch:
inputs:
IMAGE_TAG:
description: 'The image tag wished to be deployed.'
DOCKER_IMAGE:
description: 'The full name of the docker image to be deployed. (e.g. fleetdm/fleet:v4.24.1)'
required: true
# This allows a subsequently queued workflow run to interrupt previous runs
@ -29,7 +29,7 @@ env:
TF_VAR_redis_instance: cache.t3.micro
TF_VAR_fleet_min_capacity: 2
TF_VAR_fleet_max_capacity: 5
TF_VAR_fleet_image: ${{ github.event.inputs.IMAGE_TAG || 'fleetdm/fleet:main' }}
TF_VAR_fleet_image: ${{ github.event.inputs.DOCKER_IMAGE || 'fleetdm/fleet:main' }}
TF_VAR_logging_debug: true
TF_VAR_fleet_license: ${{ secrets.DOGFOOD_LICENSE_KEY }}
TF_VAR_cloudwatch_log_retention: 30