job package
$ copilot job package
What does it do?
copilot job package
produces the CloudFormation template(s) used to deploy a job to an environment.
What are the flags?
-a, --app string Name of the application.
-e, --env string Name of the environment.
-h, --help help for package
-n, --name string Name of the job.
--output-dir string Optional. Writes the stack template and template configuration to a directory.
--tag string Optional. The container image tag.
--upload-assets Optional. Whether to upload assets (container images, Lambda functions, etc.).
Uploaded asset locations are filled in the template configuration.
Examples
Prints the CloudFormation template for the "report-generator" job parametrized for the "test" environment.
$ copilot job package -n report-generator -e test
Writes the CloudFormation stack and configuration to an "infrastructure/" sub-directory instead of printing.
$ copilot job package -n report-generator -e test --output-dir ./infrastructure
$ ls ./infrastructure
report-generator-test.stack.yml report-generator-test.params.yml