Skip to content

Commit

Permalink
docs: add v1.32 blogpost skeleton (aws#5449)
Browse files Browse the repository at this point in the history
By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the Apache 2.0 License.
  • Loading branch information
huanjani authored Nov 7, 2023
1 parent 8491d15 commit e5aebd9
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 0 deletions.
1 change: 1 addition & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,7 @@ nav:
- task run: docs/commands/task-run.en.md
- version: docs/commands/version.en.md
- Blogs:
- Release v1.32: blogs/release-v132.en.md
- Release v1.31: blogs/release-v131.en.md
- Release v1.30: blogs/release-v130.en.md
- Release v1.29: blogs/release-v129.en.md
Expand Down
48 changes: 48 additions & 0 deletions site/content/blogs/release-v132.en.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
---
title: 'AWS Copilot v1.32: `run local --proxy`, `run local --watch`, imported ALB support
twitter_title: 'AWS Copilot v1.32'
image: ''
image_alt: ''
image_width: '1051'
image_height: '747'
---

# 'AWS Copilot v1.32: `run local --proxy`, `run local --watch`, imported ALB support

Posted On: November 9, 2023

The AWS Copilot core team is announcing the Copilot v1.32 release.

Our public [сommunity сhat](https://app.gitter.im/#/room/#aws_copilot-cli:gitter.im) has over 500 people participating, and our GitHub repository has over 3,100 stars on [GitHub](https://github.com/aws/copilot-cli/) 🚀.
Thanks to every one of you who shows love and support for AWS Copilot.

Copilot v1.32 brings big enhancements to help you develop more flexibly and efficiently:

- **`copilot run local --proxy`**:
- **`copilot run local --watch`**:
- **Importing ALBs**: You can front your Load-Balanced Web Services with existing ALBs. [See detailed section](#imported-ALBs)

???+ note "What’s AWS Copilot?"

The AWS Copilot CLI is a tool for developers to build, release, and operate production-ready applications on AWS.
From getting started, pushing to staging, and releasing to production, Copilot can help manage the entire lifecycle of your application development.
At the foundation of Copilot is AWS CloudFormation, which enables you to provision Infrastructure as Code.
Copilot provides pre-defined CloudFormation templates and user-friendly workflows for different types of microservice architectures,
enabling you to focus on developing your application, instead of writing deployment scripts.

See the section [Overview](../docs/concepts/overview.en.md) for a more detailed introduction to AWS Copilot.

##


##


## Imported ALBs

Copilot now introduces a new field `http.alb` in the [Load-Balanced Web Service manifest](../docs/manifest/lb-web-service.en.md). Rather than letting Copilot create a new Application Load Balancer in your environment to be shared among all load-balanced services, you may designate an existing public-facing ALB for a specific Load-Balanced Web Service (LBWS). Specify the ARN or name of an ALB from your VPC in your LBWS manifest:

```yaml
http:
alb: [name or ARN]
```

0 comments on commit e5aebd9

Please sign in to comment.