-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
51 lines (50 loc) · 1.58 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
40
41
42
43
44
45
46
47
48
49
50
51
name: 'AppSecrets'
description: 'Create a secret for microservice from global secret'
inputs:
app-name:
description: 'Applcation id'
default: ''
aws-role:
description: 'Aws role to apply changes'
default: ''
aws-region:
description: 'Aws region'
default: ''
terraform-version:
description: 'Terraform version to install.'
default: ''
terragrunt-version:
description: 'Terragrunt version to install.'
default: ''
appsecret-repo:
description: 'appsecret repository'
default: ''
appsecret-ref:
description: 'Ref to use for pulling repo apopsecret'
default: ''
github-token:
description: 'Github token to pull package to avoid limit rate'
default: ''
github-ssh:
description: 'Github ssh key to pull terragrunt from github api'
default: ''
environment:
description: 'Finalcad envrionment: production, staging, sandbox'
default: ''
region-friendly:
description: 'Finalcad region: frankfurt or tokyo'
default: ''
secret-file:
description: 'File with path for secret configuration'
default: ''
runs:
using: 'composite'
steps:
- name: "[deprecated] AppSecretsAction"
shell: bash
run: |
cat <<EOF
The Github Action https://github.com/FinalCAD/AppSecretsAction is deprecated. Use Gob (https://finalcad.atlassian.net/wiki/spaces/TE/pages/4264427522/Repository+update+by+Gob) to update your project.
If you don't know what it means, post a message on Slack #infra-backend (https://finalcad.slack.com/archives/G01GL3EBLAW).
EOF
exit 1