diff --git a/.github/workflows/clean_up.yaml b/.github/workflows/clean_up.yaml index 7552f4c3..f918bb87 100644 --- a/.github/workflows/clean_up.yaml +++ b/.github/workflows/clean_up.yaml @@ -5,9 +5,20 @@ on: inputs: list_only: description: "only list resources" - default: 'true' + type: boolean + default: true required: true + logLevel: + description: 'Log Level' + required: true + default: 'warning' + type: choice + options: + - info + - warning + - debug + jobs: clean: name: Clean up @@ -23,3 +34,4 @@ jobs: region: 'eu01' tf_resource_prefix: 'tf-acc-' service_account_json_content_b64: "${{ secrets.TF_ACC_SERVICE_ACCOUNT_JSON_B64 }}" + list_only: ${{ inputs.list_only }}