Skip to content

Commit

Permalink
Initial terraform-apply action
Browse files Browse the repository at this point in the history
  • Loading branch information
chrizkim committed Apr 21, 2021
1 parent 0980599 commit 5d3a144
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions terraform-apply/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Terraform Apply
description: Applies Terraform changes

inputs:
working_directory:
required: true
plan_filepath:
required: true

runs:
using: "composite"
steps:
- name: Apply changes
run: terraform apply -lock-timeout=10m '${{ inputs.plan_filepath }}'
working-directory: ${{ inputs.working_directory }}
shell: bash

0 comments on commit 5d3a144

Please # to comment.