-
Notifications
You must be signed in to change notification settings - Fork 2
/
action.yml
44 lines (44 loc) · 1.57 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
name: 'Titan Core Snowflake infrastructure as code'
author: 'Titan Systems, Inc'
description: 'Deploy to Snowflake with Titan'
inputs:
run-mode:
description: 'Run mode determines which actions can be performed. Valid options: `create-or-update` (never drops resources), `sync` (full resource control).'
required: true
default: 'create-or-update'
resource-path:
description: 'Resource path should point to the file or folder in the repo that contains the resource configuration.'
required: true
default: '.'
allowlist:
description: 'Allowlist is a comma-separated list of resource types that Titan is allowed to manage. If not provided, Titan will manage all resources.'
required: false
default: 'all'
vars:
description: >-
Dynamic values, specified as a JSON dictionary
(e.g. vars: '{"var_name": "var_value"}').
required: false
default: None
dry-run:
description: 'When dry run is true, Titan will not make any changes to Snowflake.'
required: false
default: 'false'
scope:
description: 'Scope limits which resources Titan will manage. Valid options: `account`, `database`, `schema`.'
required: false
default: 'account'
database:
description: 'Name of the database to limit the scope to. Only valid when scope is `database`.'
required: false
default: None
schema:
description: 'Name of the schema to limit the scope to. Only valid when scope is `schema`.'
required: false
default: None
runs:
using: 'docker'
image: 'Dockerfile'
branding:
icon: 'terminal'
color: 'orange'