Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: update overview to mention pipeline manifest #5831

Merged
merged 1 commit into from
Jun 6, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions site/content/docs/manifest/overview.en.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Manifest

The AWS Copilot CLI manifest describes a service's, a job's or an environment's architecture as infrastructure-as-code.
The AWS Copilot CLI manifest describes a service's, a job's, a pipeline's or an environment's architecture as infrastructure-as-code.

It is a file generated from `copilot init`, `copilot svc init`, `copilot job init`, or `copilot env init` that gets converted to an AWS CloudFormation template.
Unlike raw CloudFormation templates, the manifest allows you to focus on the most common settings for the _architecture_ of your service, job or environment, and not the individual resources.
It is a file generated from `copilot init`, `copilot svc init`, `copilot job init`, `copilot pipeline init`, or `copilot env init` that gets converted to an AWS CloudFormation template.
Unlike raw CloudFormation templates, the manifest allows you to focus on the most common settings for the _architecture_ of your service, job, pipeline or environment, and not the individual resources.

Manifest files are stored under `copilot/<your service, job, or environment name>/manifest.yml`.
Manifest files are stored under `copilot/<your service, job, or environment name>/manifest.yml` or `copilot/pipelines/<your pipeline name>/manifest.yml`.
Loading