Skip to content

Commit

Permalink
- bump version to v4.0.2
Browse files Browse the repository at this point in the history
- added Paris and Sydney regions where Anthropic Claude 3 is available
  • Loading branch information
aws-kens committed May 4, 2024
1 parent 8f2d05f commit 92c034f
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 6 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [4.0.2] - 2024-05-04
### Added
- added Paris (eu-west-3) and Sydney (ap-southeast-2) regions where Anthropic Claude 3 Haiku are available


## [4.0.1] - 2024-04-11
### Bugfixes
- AWS Elemental MediaConvert does not create frameCapture group when s3://[PROXY_BUCKET]/_settings/aioption.json is missing.
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ __

Before you create the Media2Cloud V4 stack, make sure you have enabled the Anthropic Claude 3 Haiku or Sonnet model through the **Amazon Bedrock** console under the `Manage model access` page.

Currently, the Anthropic Claude 3 Haiku and Sonnet models are available in the US East (N. Virginia) [us-east-1] and US West (Oregon) [us-west-2] regions. If you are creating the Media2Cloud V4 stack in other regions, such as Europe (Ireland), you can still try out the Anthropic Claude 3 Haiku and Sonnet models by enabling the model access in either `us-east-1` or `us-west-2` regions. Keep in mind that there will be additional Data Transfer cost across regions.
Currently, the Anthropic Claude 3 Haiku and Sonnet models are available in the US East (N. Virginia) [us-east-1], US West (Oregon) [us-west-2], Europe (Paris) [eu-west-3], and Asia Pacific (Sydney) [ap-southeast-2] regions. If you are creating the Media2Cloud V4 stack in other regions, such as Europe (Ireland), you can still try out the Anthropic Claude 3 Haiku and Sonnet models by choosing the model access in one of these regions: `us-east-1`, `us-west-2`, `eu-west-3`, or `ap-southeast-2`. Keep in mind that there will be additional Data Transfer cost across regions.

![Amazon Bedrock](./deployment/tutorials/images/amazon-bedrock-model-access.gif)

Expand Down Expand Up @@ -163,6 +163,8 @@ aws cloudformation create-stack \
|US East (N. Virginia)|<a href="https://console.aws.amazon.com/cloudformation/home?region=us-east-1#/stacks/quickcreate?templateURL=https://awsi-megs-guidances-us-east-1.s3.amazonaws.com/media2cloud/latest/media2cloud.template&stackName=media2cloudv4" target="_blank">Launch stack</a>|https://awsi-megs-guidances-us-east-1.s3.amazonaws.com/media2cloud/latest/media2cloud.template|
|US West (Oregon)|<a href="https://console.aws.amazon.com/cloudformation/home?region=us-west-2#/stacks/quickcreate?templateURL=https://awsi-megs-guidances-us-west-2.s3.us-west-2.amazonaws.com/media2cloud/latest/media2cloud.template&stackName=media2cloudv4" target="_blank">Launch stack</a>|https://awsi-megs-guidances-us-west-2.s3.us-west-2.amazonaws.com/media2cloud/latest/media2cloud.template|
|Europe (Ireland)|<a href="https://console.aws.amazon.com/cloudformation/home?region=eu-west-1#/stacks/quickcreate?templateURL=https://awsi-megs-guidances-eu-west-1.s3.eu-west-1.amazonaws.com/media2cloud/latest/media2cloud.template&stackName=media2cloudv4" target="_blank">Launch stack</a>|https://awsi-megs-guidances-eu-west-1.s3.eu-west-1.amazonaws.com/media2cloud/latest/media2cloud.template|
|Europe (Paris)|<a href="https://console.aws.amazon.com/cloudformation/home?region=eu-west-3#/stacks/quickcreate?templateURL=https://awsi-megs-guidances-eu-west-3.s3.eu-west-3.amazonaws.com/media2cloud/latest/media2cloud.template&stackName=media2cloudv4" target="_blank">Launch stack</a>|https://awsi-megs-guidances-eu-west-3.s3.eu-west-3.amazonaws.com/media2cloud/latest/media2cloud.template|
|Asia Pacific (Sydney)|<a href="https://console.aws.amazon.com/cloudformation/home?region=ap-southeast-2#/stacks/quickcreate?templateURL=https://awsi-megs-guidances-ap-southeast-2.s3.ap-southeast-2.amazonaws.com/media2cloud/latest/media2cloud.template&stackName=media2cloudv4" target="_blank">Launch stack</a>|https://awsi-megs-guidances-ap-southeast-2.s3.ap-southeast-2.amazonaws.com/media2cloud/latest/media2cloud.template|

The stack creation takes about 30 minutes to complete. Upon completion, you should receive an email invitation to the Media2Cloud web portal.

Expand Down
1 change: 1 addition & 0 deletions deployment/common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ REGIONS=( \
ca-central-1 \
eu-west-1 \
eu-west-2 \
eu-west-3 \
eu-central-1 \
ap-south-1 \
ap-northeast-1 \
Expand Down
8 changes: 4 additions & 4 deletions deployment/deploy-s3-dist.sh
Original file line number Diff line number Diff line change
Expand Up @@ -145,11 +145,10 @@ function copy_to_bucket() {
[ "$location" != "null" ] && \
region=$location

local latestUrl=""
local domain=s3.${region}.amazonaws.com
local domain="s3.amazonaws.com"
local optionalFlag="--acl ${ACL_SETTING}"
if [ "$region" == "us-east-1" ]; then
domain=s3.amazonaws.com
if [ "$region" != "us-east-1" ]; then
domain=s3.${region}.amazonaws.com
optionalFlag="${optionalFlag} --region ${region}"
fi

Expand All @@ -159,6 +158,7 @@ function copy_to_bucket() {
echo "== Deploy '${SOLUTION} ($VERSION)' package from '${source}' to '${dest}' in '${region}' [COMPLETED] =="

# deploy to "latest" folder if specified
local latestUrl=""
if [ "$DEPLOY_LATEST" == "true" ]; then
latestUrl="https://${bucket}.${domain}/${SOLUTION}/latest/${MAIN_TEMPLATE}"

Expand Down
2 changes: 2 additions & 0 deletions deployment/media2cloud.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,8 @@ Parameters:
AllowedValues:
- North Virginia [US East] (us-east-1)
- Oregon [US West] (us-west-2)
- Paris [Europe] (eu-west-3)
- Sydney [Asia Pacific] (ap-southeast-2)
- No, do not enable Amazon Bedrock
# - Frankfurt [Europe] (eu-central-1)
# - Tokyo [Asia Pacific] (ap-northeast-1)
Expand Down
2 changes: 1 addition & 1 deletion source/layers/core-lib/lib/.version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.0.1
4.0.2

0 comments on commit 92c034f

Please sign in to comment.