typescript aws

pull/235/head
mdugdale 2021-03-27 22:40:54 +00:00
parent c14c2fe14b
commit d398a1e08d
2 changed files with 8 additions and 2 deletions

View File

@ -31,9 +31,13 @@ inputs:
default: '' default: ''
description: 'Path to a Namespace.Class.StaticMethod to run to perform the build.' description: 'Path to a Namespace.Class.StaticMethod to run to perform the build.'
remoteBuildCluster: remoteBuildCluster:
default: '' default: 'local'
required: false required: false
description: 'To use a remote build cluster specify either, aws or k8s as well as the required parameters.' description: 'Either local, k8s or aws can be used to run builds on a remote cluster. Additional parameters must be configured.'
awsStackName:
default: 'game-ci'
required: false
description: 'The Cloud Formation stack name that must be setup before using this option.'
kubeConfig: kubeConfig:
default: '' default: ''
required: false required: false

View File

@ -10,6 +10,7 @@ import Project from './project';
import Unity from './unity'; import Unity from './unity';
import Versioning from './versioning'; import Versioning from './versioning';
import Kubernetes from './kubernetes'; import Kubernetes from './kubernetes';
import AWS from './aws';
export { export {
Action, Action,
@ -24,4 +25,5 @@ export {
Unity, Unity,
Versioning, Versioning,
Kubernetes, Kubernetes,
AWS
}; };