forked from dflook/terraform-github-actions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yaml
44 lines (41 loc) · 1.06 KB
/
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
38
39
40
41
42
43
44
name: terraform-check
description: Check if there are Terraform changes to apply
author: Daniel Flook
inputs:
path:
description: Path to the Terraform configuration
required: false
default: .
workspace:
description: Name of the Terraform workspace
required: false
default: default
backend_config:
description: List of backend config values to set, one per line
required: false
default: ""
backend_config_file:
description: Path to a backend config file
required: false
default: ""
variables:
description: Variable definitions
required: false
var:
description: Comma separated list of vars to set, e.g. 'foo=bar'
required: false
deprecationMessage: Use the variables input instead.
var_file:
description: List of var file paths, one per line
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