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

applying boto3==1.34.35 in DeployFrontend action #1054

Merged
merged 2 commits into from
Feb 14, 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 deploy/stacks/pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -793,7 +793,7 @@ def set_cloudfront_stage(self, target_env):
'echo "credential_source = EcsContainer" >> ~/.aws/config',
'aws sts get-caller-identity --profile buildprofile',
'export AWS_PROFILE=buildprofile',
'pip install boto3==1.20.50',
'pip install boto3==1.34.35',
'pip install beautifulsoup4',
'python deploy/configs/frontend_config.py',
'export AWS_DEFAULT_REGION=us-east-1',
Expand Down Expand Up @@ -872,7 +872,7 @@ def cw_rum_config_action(self, target_env):
'aws sts get-caller-identity --profile buildprofile',
'export AWS_PROFILE=buildprofile',
'pip install --upgrade pip',
'pip install boto3==1.20.46',
'pip install boto3==1.34.35',
'python deploy/configs/rum_config.py',
],
role=self.expanded_codebuild_role.without_policy_updates(),
Expand All @@ -899,7 +899,7 @@ def cognito_config_action(self, target_env):
'aws sts get-caller-identity --profile buildprofile',
'export AWS_PROFILE=buildprofile',
'pip install --upgrade pip',
'pip install boto3==1.20.46',
'pip install boto3==1.34.35',
'python deploy/configs/cognito_urls_config.py',
],
role=self.expanded_codebuild_role.without_policy_updates(),
Expand Down Expand Up @@ -965,7 +965,7 @@ def set_albfront_stage(self, target_env, repository_name):
'echo "credential_source = EcsContainer" >> ~/.aws/config',
'aws sts get-caller-identity --profile buildprofile',
'export AWS_PROFILE=buildprofile',
'pip install boto3==1.20.50',
'pip install boto3==1.34.35',
'pip install beautifulsoup4',
'python deploy/configs/frontend_config.py',
'unset AWS_PROFILE',
Expand Down
Loading