forked from dflook/terraform-github-actions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yaml
37 lines (34 loc) · 925 Bytes
/
action.yaml
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
name: terraform-check
description: Check if there are terraform changes to apply
author: Daniel Flook
inputs:
path:
description: Path to the terraform configuration
required: true
workspace:
description: Name of the terraform workspace
required: false
default: default
backend_config:
description: Comma separated list of backend configs to set, e.g. 'foo=bar'
required: false
backend_config_file:
description: Path to a backend config file"
required: false
var:
description: Comma separated list of vars to set, e.g. 'foo=bar'
required: false
var_file:
description: Comma separated list of var file paths
required: false
parallelism:
description: Limit the number of concurrent operations
required: false
default: 0
runs:
using: docker
image: ../image/Dockerfile
entrypoint: /entrypoints/check.sh
branding:
icon: globe
color: purple