-
Notifications
You must be signed in to change notification settings - Fork 14
/
action.yml
39 lines (39 loc) · 1.48 KB
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: 'Terraform Apply for GorillaStack'
description: 'Cost-Optimization, Backup & Security Alerting for the AWS Cloud with Terraform templates living in your repository'
branding:
icon: 'layers'
color: 'orange'
inputs:
action:
description: 'The action type (currently "validate" and "apply" are available)'
required: true
default: validate
stack_name:
description: 'The name of the tfstate bucket stack'
required: true
default: github-actions-gorillastack-tfstate
aws_default_region:
description: 'The region in which you deployed the tfstate bucket stack'
required: true
default: us-east-1
aws_access_key_id:
description: 'The AWS Access Key Id for the user with privileges to access the tfstate bucket'
required: true
default: defaulted-for-everything-but-apply
aws_secret_access_key:
description: 'The AWS Secret Access Key for the user with privileges to access the tfstate bucket'
required: true
default: defaulted-for-everything-but-apply
gorillastack_api_key:
description: 'GorillaStack API Key, which is read-write or read-only, tied to your user identity'
required: true
default: defaulted-for-everything-but-apply
gorillastack_team_id:
description: 'GorillaStack Team Id, sets context of which team/tenant you are targeting'
required: true
default: defaulted-for-everything-but-apply
runs:
using: 'docker'
image: 'docker://gorillastack/github-actions-base:1'
args:
- '${{ inputs.action }}'