You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the Cloudformation template drift-service-catalog.yaml, the variable ${AWS::Region} is used to dynamically change the URL of the CFN template for BatchProduct and DeployProduct. However, the original bucket amazon-sagemaker-safe-deployment-pipeline has only been deployed in us-east-1.
Solution:
Change line 218 and 235 to use only the template from region us-east-1 instead of a variable.
This has been tested and works. The template has to be updated not only in this GitHub repo, but also in the S3 bucket amazon-sagemaker-safe-deployment-pipeline, otherwise the "Launch stack" button will not work.
The text was updated successfully, but these errors were encountered:
Thanks for raising this issue. I am generating this template using CDK which has populate the AWS::Region, so making this change would require a manual edit which I am looking to avoid if possible.
Does the problem not appear when you try to deploy with CDK, but in a region different than us-east-1? Cause it should, since the bucket does not exist.
In the Cloudformation template
drift-service-catalog.yaml
, the variable${AWS::Region}
is used to dynamically change the URL of the CFN template forBatchProduct
andDeployProduct
. However, the original bucketamazon-sagemaker-safe-deployment-pipeline
has only been deployed inus-east-1
.Solution:
Change line 218 and 235 to use only the template from region us-east-1 instead of a variable.
This has been tested and works. The template has to be updated not only in this GitHub repo, but also in the S3 bucket
amazon-sagemaker-safe-deployment-pipeline
, otherwise the "Launch stack" button will not work.The text was updated successfully, but these errors were encountered: