forked from alec-pinson/terraform-github-actions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yaml
53 lines (49 loc) · 1.29 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
45
46
47
48
49
50
51
52
53
name: terraform-plan
description: Create a terraform plan
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 config values to set, e.g. 'foo=bar'
required: false
backend_config_file:
description: Path to a backend config file
required: false
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: Comma separated list of var file paths
required: false
parallelism:
description: Limit the number of concurrent operations
required: false
default: 0
label:
description: A friendly name for this plan
required: false
default: ""
add_github_comment:
description: Add the plan to a GitHub PR
required: false
default: true
outputs:
changes:
description: If the plan changes any resources - 'true' or 'false'
runs:
using: docker
image: ../image/Dockerfile
entrypoint: /entrypoints/plan.sh
branding:
icon: globe
color: purple