1 Answer
- Newest
- Most votes
- Most comments
0
You can read this blog post that explains how to create a multi-region deployment with AWS CodePipeline.
This blog post demonstrates this CloudFormation template hosted on GitHub. Essentially, you need to specify your target region in your CodeDeploy action:
- Name: !Ref OtherRegion1 InputArtifacts: - Name: Source ActionTypeId: Category: Deploy Owner: AWS Version: '1' Provider: CloudFormation Configuration: ActionMode: CREATE_UPDATE RoleArn: !GetAtt CloudFormationServiceRole.Arn Capabilities: CAPABILITY_IAM,CAPABILITY_AUTO_EXPAND StackName: !Join - '-' - - !Ref 'AWS::StackName' - TestStack1 TemplatePath: Source::CF/MultiRegionDeployment.yml RunOrder: 6 Region: !Ref OtherRegion1
answered 2 years ago
Relevant content
- AWS OFFICIALUpdated 2 years ago
- AWS OFFICIALUpdated 2 years ago
- AWS OFFICIALUpdated 3 years ago
- AWS OFFICIALUpdated a year ago